- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path01_variable.js
More file actions
Latest commit
19 lines (16 loc) · 420 Bytes
/
Copy path01_variable.js
File metadata and controls
19 lines (16 loc) · 420 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// variables - store, access, modify === value
// declare, assignment operator, assign value
// javascript camelCase or underscore
// case sensitive fullName and fullname
// must start with letter, % or _
// variable store
letname='dncode';
// access
console.log(name);
// just declare
letaddress,zip,city;
// assignment
address='street heaven';
zip='5555';
city='tokyo';
console.log(address,zip,city);