不运行代码,你知道答案吗?
Posted honghong
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了不运行代码,你知道答案吗?相关的知识,希望对你有一定的参考价值。
1: var a = 111111111111111110000,
b = 1111;
a + b;
2: 5 == [5];
3: function foo(){
};
foo.name = "honghong";
foo.name
4:
"use strict";
function foo(a) {
var a;
return a;
}
function bar(a) {
var a = ‘bye‘;
return a;
}
console.log(foo(‘hello‘));
console.log(bar(‘hello‘));
5:
function Foo() {
getName = function () {
alert (1);
};
return this;
}
Foo.getName = function () { alert (2);};
Foo.prototype.getName = function () { alert (3);};
var getName = function () { alert (4);};
function getName() { alert (5);}
Foo.getName();
getName();
Foo().getName();
getName();
new Foo.getName();
new Foo().getName();
new new Foo().getName();
以上是关于不运行代码,你知道答案吗?的主要内容,如果未能解决你的问题,请参考以下文章
.Net 7 的Native AOT为啥不支持反射,你知道吗