zoukankan      html  css  js  c++  java
  • The usage of the Javascript method call and apply(what is the new and object.create difference.)(What does call(null) mean?)

    firstly please review a code sample below .

    <html>
    	<head>
    		<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
    		<script  type="text/javascript">
    			/**/
    			$(function(){
    				var baseObj=function(){
    				this.firstname="joe";
    				this.lastname="wang";
    			
    				};
    				
    				var childObj=function(){
    					this.firstname="wq";
    				};
    				
    				var b= new baseObj();
    				var c = new childObj();
    				baseObj.call(c);
    				alert(c.firstname);
    			
    			
    			});
    			
    		
    		</script>
    	</head>
    	<body>
    	
    	</body>
    </html>
    

     

    the output is "joe" instead of the "wq".

    so, found the mystery the call ?

    Another case need to be mentioned here , the firstArg of call could be null. 

    As the MDN explained.

    thisArg

    The value of this provided for the call to fun. Note that this may not be the actual value seen by the method: if the method is a function in non-strict mode code, null and undefined will be replaced with the global object, and primitive values will be boxed.

    Simply put it by a little code.

    <script>'use strict'function fun(){
                alert(this);}
            fun.call(null);</script>
    

      

    In the strict mode ,this is null. But in the not strict mode . this is window or global object.

     see also:

    http://stackoverflow.com/questions/4166616/understanding-the-difference-between-object-create-and-new-somefunction-in-j

  • 相关阅读:
    Linux下修改Tomcat默认端口
    java 中 byte[]、File、InputStream 互相转换
    安装mule-standalone说明
    python: 可变参数
    vim编码方式设置
    ASCII, Unicode 与 UTF-8
    Vim: 强大的g
    Vim模糊查找与替换
    Vim统计字符串出现次数
    APB简介
  • 原文地址:https://www.cnblogs.com/malaikuangren/p/3018622.html
Copyright © 2011-2022 走看看