热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

Js编程题汇总

Coding题:1.预测以下代码的输出结果:varFoofunction(a){functionbar(){console.log(a);};this
Coding题: 1. 预测以下代码的输出结果:
var Foo = function(a) {  
function bar() {
console.log(a);
};
this.baz = function() {
console.log(a);
};
};

Foo.prototype
= {
biz:
function() {
console.log(a);
}
};

var f = new Foo(7);
//预测输出结果:
f.bar(); // result: TypeError, f.bar is not a function.
f.baz(); // result: 7
f.biz(); // result: ReferenceError, a is not defined

2、

// 函数声明语句
{
let a
= 'secret';
function f() {
return a;
}
}

// 函数表达式
{
let a
= 'secret';
let f
= function () {
return a;
};
}

 

 

 


推荐阅读
author-avatar
陈可不能哭
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有