如何取消设置JavaScript变量?

要在JavaScript中取消设置变量,请使用undefined。之后,使用delete运算符将其完全删除。

让我们再次尝试代码片段。

var str = “Demo Text”;
window.onscroll = function() {
   var y = this.pageYOffset;
   if(y > 200) {
      document.write(nxt);
      nxt = undefined; // unset
     delete(nxt); // this removes the variable completely
     document.write(nxt); // the result will be undefined
   }
}