實際開發過程中,會有判斷一個變量是否存在的場景
首先想到的是
if(a==undefined){ console.log("a is undefined") }else{ console.log("a is defiend") }
這里會報錯,有可能產生阻塞,而且不夠優雅

解決方法:
if(typeof a!=="undefined"){ console.log("a is undefined") }else{ console.log("a is defiend") }
轉: https://blog.csdn.net/dombreakpoint/article/details/74156950
