以下代码表示的含义是。 var timer = setInterval(function(){ console.log("Hello World"); },1000);
每隔1000毫秒打印输出一次Hello World
举一反三
- 下列代码的执行结果为|var fn = "hello";|fn();|function fn(){ |console.log("world")|}; A: "hello" B: "world" C: undefined D: fn is not function
- 下列代码的执行结果为( )。 var fn = “hello”; fn(); function fn(){ console.log(“world”)}; A: “hello” B: “world” C: undefined D: fn is not function
- 写出以下程序的执行结果为( )function test() {console.log(a);var a = 1;console.log(a);console.log(hello)}tset();
- 下面代码的运行结果是( )。var str= "hello world" ;var str1=str.toUpperCase();var str2=str.toLowerCase() ;alert (str1) ;alert (str2) ; A: "HELLO WORLD","HELLO WORLD" B: "HELLO WORLD","hello world" C: "hello worl","HELLO WORLD" D: "hello world","hello world"
- 以下代码运行的结果是输出 var a = b = 10; (function(){ var a=b=20 })(); console.log(b);
内容
- 0
指出代码输出的各个结果: console.log(test); function test(test){ console.log(test); var test=234; console.log(test); function test(){} } test(1); var test=123;
- 1
下面代码的输出结果是 var a=10; function fun(a){ a++; console.log(a); } fun(a); console.log(a);
- 2
var str = "Hello world" var re = str.indexOf("h") console.log(re) 请问输出的结果为
- 3
const{log}=console;log(’hello’)执行这个代码在控制台的结果是什么?() A: hello B: 报错 C: undefined D:
- 4
中国大学MOOC:"以下代码片段运行后,在console面板显示的结果是( ) wx.onAccelerometerChange(function (res) { console.log(res.x) console.log(res.y) console.log(res.z)})";