JavaScript中定义一个求两个整数较大数函数的正确形式是(  )。A.fu

最全题库2022-08-02  35

问题 JavaScript中定义一个求两个整数较大数函数的正确形式是(  )。A.function:max(int x,int y){}B.function=max(x,y){}C.function int max(int x,int y){}D.function max(x,y){}

选项 A.function:max(int x,int y){}
B.function=max(x,y){}
C.function int max(int x,int y){}
D.function max(x,y){}

答案 D

解析 本题考查JavsScript语言中函数定义的方法。
JS中函数声明的一般语法为:function functionName(arg 0,arg 1,arg 2){
//函数体
}
仅有D选项符合表达式,其余三项表示皆错误。
转载请注明原文地址:https://tihaiku.com/congyezige/2423754.html

最新回复(0)