“Как объявить переменную JS” Ответ

JS переменные

// 3 ways to create

var mrVariable = 'x'; // You can set it to to a string ( '' ) or no. ( 0 ). It 
// is globally defined

let myVariaible2 = 'y'; // You can set it to string or no. let is block scoped

const myVariable = 'z'; // It is block scoped, can be a string or no. and can't 
//be reassigned
Annoying Antelope

Как объявить переменную JS

const name = 'Anthony';
Anthony Smith

Объявление переменной javaScript

var name = "mamama";
document.write(name);
// Outputs "mamama"
Impossible Iguana

Как создавать переменные с помощью 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
  
};
Lanitoman

переменная в JS

var name = ""
Grumpy Goat

Ответы похожие на “Как объявить переменную JS”

Вопросы похожие на “Как объявить переменную JS”

Больше похожих ответов на “Как объявить переменную JS” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования