“javaScript переменная” Ответ

JS Var

var x = 0;

function f() {
  var x = y = 1; // x è dichiarata localmente. y invece no!
}
f();

console.log(x, y); // Genera un ReferenceError in strict mode (y non è definita). 0, 1 altrimenti.
// In modalità non-strict mode:
// x è la globale come si ci aspettava
// però, y è uscita fuori dalla funzione!
DevLorenz02

javascript переменные

// here are the ways to define variables
var x = "hi"; // for global variables
let x = "hi"; // for block-scoped variables
const x = "hi"; // for block-scoped variables which can not be reassigned
The Cat Coder

var javascript

var is a keyword to define the varible in js but as of es-6 we, use let and const keywords for the same
Xerothermic Xenomorph

javaScript переменная

// This is best way to make a variable
// Varibales Store Data
var variable1 = 56;
//OR
var variable2 = true;

var variable3 = "Hello World";
Technical Gamer

javaScript переменная

var myString = "string"; //var can be redefined
var myInt = 34; //var can be redefined
const myString2 = "string"; //const cannot be redefined
const myInt2 = 69; //const cannot be redefined
Cute Chimpanzee

javaScript переменная

var variable = "Hello World";
Insert_Name_Here

Ответы похожие на “javaScript переменная”

Вопросы похожие на “javaScript переменная”

Больше похожих ответов на “javaScript переменная” по JavaScript

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

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