Variable Java Script

You might also like

Download as pptx, pdf, or txt
Download as pptx, pdf, or txt
You are on page 1of 6

Variable & Datatypes

Datatypes
• Numbers
int
float
• String
• Boolean
• java:
• int a= 10;
• int b=3.1; // error

• javaScript:
• var a= 10; # Es4
• let a= 10; # ES5
• const a= 10; # ES5
Variable creation
• let name= 'Max';
• let age= 20;
• let marks= 99.9;
• let passed= true;
comments
• // comments
• cmd+ / shortcut
Arrays
• let a= ['Max', 'Mike', 'Bill'];
• console.log(a[0]);

You might also like