“Stałe JavaScript” Kod odpowiedzi

stałą zmienną JavaScript

const name = "bashiru"
Bash Bukari

stałe wartości JavaScript

Constant values can be mutated, they just can't be reassigned

const arr = [1,2,3]

// doesn't work:
arr = [1,2,3,4]

// works:
arr.push(4)
QuietHumility

Stałe JavaScript

const x = 5;
x = 10;  // Error! constant cannot be changed.
console.log(x)
SAMER SAEID

JS Zdefiniuj stałą według identyfikatora elementu

const elem = document.getElementById('elementID');
Ugly Unicorn

JavaScript Const

const PI = 3.141592653589793;
PI = 3.14;      // This will give an error
PI = PI + 10;   // This will also give an error
naly moslih

Odpowiedzi podobne do “Stałe JavaScript”

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu