Answers for "create var in js"

SQL
2

variables in js

var Hello = "World";
let bool = false;
const int = 8788;
Posted by: Guest on December-17-2020
0

js var

var a = 0, b = 0;
Posted by: Guest on January-04-2021
0

js var

var nomevariabile1 [= valore1] [, nomevariabile2 [= valore2] ... [, nomevariabileN [= valoreN]]];
Posted by: Guest on January-04-2021
-1

how to create variables using javascript

var myVar;       //unitialized variable( can be intiallized later )
var number = 1; //number
var string = " hello world " ; //string
var boolean = true ;  //boolean
myVar = function(){  //variable can hold function
  
};
Posted by: Guest on February-09-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language