代码的输出结果是var str = ''; for(var b = 1;b < 11;b ++){ str += 'helloworld
'; } document.write(str);
A: helloworld
B: helloworld
C: 输出10个helloworld
D: 输出10个helloworld
'; } document.write(str);
A: helloworld
B: helloworld
C: 输出10个helloworld
D: 输出10个helloworld
举一反三
- var str = "Helloworld" var re = str.charAt(5) console.log(re) 请问输出的结果为
- 如何使用PHP输出"helloworld"? A: "HelloWorld"; B: echo"HelloWorld"; C: Document.Write("HelloWorld"); D: System.out.println("HelloWorld");
- 语句PrintFormat(“HelloWorld”,“>”)的输出结果是()。 A: helloWORLD B: helloworld C: HELLOWORLD D: HELLOworld
- 使用PHP输出"Helloworld"的正确方式是()。 A: "HelloWorld"; B: echo"HelloWorld"; C: Document.Write("HelloWorld"); D: response.write(“HelloWorld”);
- 输出"HelloWorld"的正确Javascript语法是()。 A: print("HelloWorld") B: response.write("HelloWorld") C: document.write("HelloWorld") D: printf("HelloWorld")