Skip to content

Instantly share code, notes, and snippets.

@upangka
Created December 31, 2019 02:28
Show Gist options
  • Save upangka/4405dcc5f413efeceb2c1179220dfa7f to your computer and use it in GitHub Desktop.
Save upangka/4405dcc5f413efeceb2c1179220dfa7f to your computer and use it in GitHub Desktop.
javascript 赋值undefined
let a = void 0  // a is undefined
let f = ()=>{return;}
let b = f()   // b is undefined

参考链接

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment