首页
沸点
课程
数据标注
HOT
AI Coding
更多
直播
活动
APP
插件
直播
活动
APP
插件
搜索历史
清空
创作者中心
写文章
发沸点
写笔记
写代码
草稿箱
创作灵感
查看更多
登录
注册
qiilee
掘友等级
前端开发工程师
专注于前端技术的学习与分享!
获得徽章 0
动态
文章
专栏
沸点
收藏集
关注
作品
赞
0
文章 0
沸点 0
赞
0
返回
|
搜索文章
最新
热门
选择篇(012)-下面代码的输出是什么?
```js String.prototype.giveLydiaPizza = () => { return "Just give Lydia pizza already!"; }; const
选择篇(011)-当我们这样做时会发生什么?
```js function bark() { console.log('Woof!'); } bark.animal = 'dog'; ``` ``` A:Nothing, this is
选择篇(010)-下面代码的输出是什么?
```js let a = 3; let b = new Number(3) let c = 3; console.log(a == b); console.log(a === b); consol
选择篇(009)-下面代码的输出是什么?
```js [1, 2, 3, 4].reduce((x, y) => console.log(x, y)) ``` ``` A: 1 2 and 3 3 and 6 4 B: 1 2 and 2
选择篇(008)-下面代码的输出是什么?
```js function getAge(...args) { console.log(typeof args); } getAge(21); ``` ``` A: "number"
选择篇(007)-下面代码的输出是什么?
```js let name = "Lydia"; function getName() { console.log(name); let name = "Sarah"; }
选择篇(006)-下面代码的输出是什么?
```js let newList = [1, 2, 3].push(4); console.log(newList.push(5)); ``` ``` A: [1,2,3,4,5] B: [1,
选择篇(005)-下面代码的输出是什么?
```js console.log("🐭" + "🐍"); ``` ``` A: 🐭🐍 B:257548 C:A string containing their code points
选择篇(004)-下面代码的输出是什么?
```js const name = "Lydia"; console.log(name()); ```
选择篇(003)-下面代码的输出是什么?
const settings = { username: 'lydiahallie', level: 19, health: 90 }; const data = JSON.s
下一页
个人成就
文章被点赞
1
文章被阅读
4,339
掘力值
130
关注了
21
关注者
0
收藏集
2
关注标签
3
加入于
2019-05-20