JS函数立即执行
Posted 全栈工程师
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JS函数立即执行相关的知识,希望对你有一定的参考价值。
https://blog.csdn.net/u011215669/article/details/89086362
(()=>{ let canShow = true if(this.props.isPlayerOnly){ canShow = false }else{ if(isFullScreen){ canShow = false } } return {display: canShow ? ‘flex‘:‘none‘ } })()
原生JS代码立即执行:
(function(x){console.log(x)}(1))
以上是关于JS函数立即执行的主要内容,如果未能解决你的问题,请参考以下文章