写点什么

第二周作业

作者:大肚皮狒狒
  • 2023-08-21
    广东
  • 本文字数:699 字

    阅读完需:约 2 分钟

一、判断题

Java 是编译型语言。N

Javascript 中,不区分大小写字母,也就是说 A 和 a 是同一个变量。N

Javascript 中的常量包括 String、Number、Boolean、Null、Undefined。N

String 字符串的语法中既可以使用单引号,也可以使用双引号。Y

typeof 是用来判断变量类型,不可以当作运算符使用。N

任何值和 undefined 运算,undefined 可看做 0 运算。N

二、请分别描述下列代码中“+”的作用。

console.log(“年龄:” + 20); 字符串连接

console.log(11+22+33); 算数加法

console.log(“网络 + 安全”); 无意义,字符串

var a = 1;

var b = 2;

console.log(“a” + b); 字符串连接

var a = 1;

var b = 2;

console.log(“a + b”); 无意义,字符串

三、计算下述代码的打印值

var a = 10;

var b = 10;

console.log(a++); 10

console.log(++a); 12

console.log(–b); -10

console.log(b–); 不能运行。。。。

四、分别使用行内式、内嵌式、引入外部文件的方法造成网页弹窗,要求触发弹窗的 JavaScript 命令不止一种(alert、print、prompt)。

index.html

<!DOCTYPE html><html lang="en"><head>    <meta charset="UTF-8">    <title>网络安全训练营</title></head><body style="background-color:orange;">
<a href="https://u.geekbang.org/">
<img src="https://static001.geekbang.org/static/university/img/university-logo.3d6b4cc3.svg" title="极客时间"
>
</a><hr/><h2>
&lt;a&gt; 极客时间 &lt;p&gt; <input type="button" onclick="alert('行内式')" value="alert"></h2>

</body></html><script src="index.js">

print("内嵌式")
</script>
复制代码

index.js

prompt("外链式")
复制代码


用户头像

还未添加个人签名 2020-03-25 加入

还未添加个人简介

评论

发布
暂无评论
第二周作业_大肚皮狒狒_InfoQ写作社区