本篇文章為大家帶來了關於javascript的相關知識,其中主要介紹了關於使用const宣告常數的相關問題,const 用於聲明一個或多個常數,聲明時必須進行初始化,且初始化後值不可再修改,下面一起來看一下,希望對大家有幫助。
【相關推薦:javascript影片教學、web前端】
##const 用來宣告一個或多個常數,宣告時必須初始化,且初始化後值不可再修改。 const 宣告常數const定義常數與使用let 定義的變數相似:var a = 10; const x = 'world'; if (a > 0){ const x = 'hello'; console.log(x); // 这里输出 x 为 hello } console.log(x); // 这里输出 x 为 world
{ var x = 'world'; const x = 'hello'; // 报错 }
// 错误写法 const PI; PI = 3.14
// 正确写法 const PI = 3.14;
const PI = 3.14; PI = PI + 1; // 报错
const person = { name: "yoyo", age: 20, }; person.name = 'hello'; person.age = 30; console.log(person.name); // hello console.log(person.age); // age
const person = { name: "yoyo", age: 20, }; person = {name: 'xx', age: 23}; // 报错
const a = ['hello', 'world']; // 修改元素 a[0] = "yoyo"; console.log(a); // ['yoyo', 'world'] a.shift('12'); console.log(a); // ['world'] a.unshift('xx'); console.log(a); // ['xx', 'world'] a.push('yy'); console.log(a); // ['xx', 'world', 'yy']
const a = ['hello', 'world']; a = ['x', 'y']; // 报错
以上是JavaScript學習之使用const聲明常數的詳細內容。更多資訊請關注PHP中文網其他相關文章!