码迷,mamicode.com
首页 > 其他好文 > 详细

不运行代码,你知道答案吗?

时间:2016-12-19 07:48:55      阅读:228      评论:0      收藏:0      [点我收藏+]

标签:return   hello   foo   type   ict   代码   ons   alert   nbsp   

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();

 

不运行代码,你知道答案吗?

标签:return   hello   foo   type   ict   代码   ons   alert   nbsp   

原文地址:http://www.cnblogs.com/honghong87/p/6195888.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!