Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

What are the types of variables and what are they in javascript?

Quas; What are the types of variables and what are they?
Ans; Here are the names of some type variables

// number type variable 
var myAge = 20;

// string type variable 
var myName = "iqbal";

// boolean type variable 
var amIsingle = true;
 
PREVIOUS NEXT
Tagged: #What #types #variables
ADD COMMENT
Topic
Name
7+8 =