kettle怎么設(shè)置和獲取變量

小億
670
2024-04-02 16:17:03

在JavaScript中設(shè)置和獲取變量可以使用以下方法:

設(shè)置變量:

var kettle = "Electric";

獲取變量:

console.log(kettle); // 輸出 Electric

如果想要更改變量的值,只需重新賦值即可:

kettle = "Stovetop";
console.log(kettle); // 輸出 Stovetop

0