js中冒号的作用
文章标签
冒号
javascript 中冒号 (:) 的作用包括:声明标签、条件判断、对象字面量、对象 destructuring、数组 destructuring、函数参数默认值和 switch 语句中关联 case 子句。
JavaScript 中冒号的作用
冒号 (:) 在 JavaScript 中有多种用途:
声明标签:
myLabel: // 代码块
条件判断:
result = condition ? trueValue : falseValue;
对象字面量:
const myObject = { name: "John", age: 30};
对象 destructuring:
const { name, age } = myObject;
数组 destructuring:
const [first, second, ...rest] = myArray;
函数参数默认值:
function greet(name = "World") { console.log(`Hello, ${name}!`);}
switch 语句:
switch (value) { case 1: // 代码 break; case 2: // 代码 break;}