单项选择题
A.如果一个图的顶点对是有序的,则可以称之为有向图 B.如果图是无序的,则称之为无序图,或无向图 C.图由边的集合及顶点的集合组成 D.以上都正确
(() => {let x, y;try {throw new Error();} catch (x) {(x...
单项选择题(() => {let x, y;try {throw new Error();} catch (x) {(x = 1), (y = 2);console.log(x);}console.log(x);console.log(y);})();以上代码运行结果为()
A.1 undefined 2 B.undefined undefined undefined C.1 1 2 D.1 undefined undefined
JavaScript中的所有内容都是()A.原始或对象B.函数或对象C.技巧问题!只有对象D.数字或对象
单项选择题JavaScript中的所有内容都是()
A.原始或对象 B.函数或对象 C.技巧问题!只有对象 D.数字或对象
!!null;!!"";!!1; 以上三个表达式的输出结果分别为()A.false true falseB.f...
单项选择题!!null;!!"";!!1; 以上三个表达式的输出结果分别为()
A.false true false B.false false true C.false true true D.true true false