Is there a JavaScript equivalent of the Python pass statement that does nothing?

前端 未结 9 667
感情败类
感情败类 2021-02-06 20:02

I am looking for a JavaScript equivalent of the Python:

pass statement that does not run the function of the ... notation?

Is the

9条回答
  •  星月不相逢
    2021-02-06 20:51

    If you want to just use the pass operator in a ternary operator or just in an if statement in JS, you can do this:

    a === true && console.log('okay')
    

    You can use also use || operator but you should know that the || is the opposite of &&. Then if you want to use Pass in a function or a block in general as we do in Python like this:

    def Func(): pass
    

    In JS you should just leave the block empty as this:

     if(){ 
        console.log('ok')
        }else{}
    

    In the end, there are no braces in Python, so this is the main reason why we have a pass.

提交回复
热议问题