JS if not a variable

This question already has an answer here:

  • Is there a better way to do optional function parameters in JavaScript? [duplicate] 29 answers

  • 如果该参数未传递给该函数,则该参数undefined

    function foo( x, y, opt ){
        if( typeof opt === 'undefined' ){ 
            opt = 1;
        }
        ...
    }
    

    在JavaScript中,你可以添加像这样的默认值:

    function foo(x,y,opt){
     if(typeof(opt)==='undefined') opt = 1;
     //your code
    }
    
    链接地址: http://www.djcxy.com/p/17282.html

    上一篇: 方法中的默认值?

    下一篇: JS如果不是一个变量