JavaScript 关键词

js 中一些关键字

break 终止 switch 或循环。

switch (Number){
        case 1:{
            console.log("hello world")
        },
        // 跳出循环
            break;
        default:
            break;
    } 

function 声明函数。
return 退出函数用于方法返回值

function myfunction (a){
    return a+a
}

for 标记需被执行的语句块,只要条件为真。
continue 跳出循环并在顶端开始。
if ... else 标记需被执行的语句块,根据某个条件。

    let myList = [a,b,c]
    for (var i = 0; i < myList.length; i++) {
        let item = myList[i]
        if (item == a){
            continue
        } else{
            console.log(a)
        }
    }

forEach 循环遍历数组使用

    myList.forEach((item) =>{
        console.log(item)
    });

do ... while 执行语句块,并在条件为真时重复代码块。

var text = ""
var i = 0
do {
    text += "
数字为 " + i; i++; } while (i < 5) { console.log(item) }

try ... catch 对语句块实现错误处理。

    try{
        let list = [a,b,c]
        let b = list[4]
    }catch(e){
        console.log("数组越界")
        //TODO handle the exception
    }

var let 声明变量。

你可能感兴趣的:(JavaScript 关键词)