Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
if(typeof hello! = 'undefined'){ }
这个太难打了,想用下划线
根据官方文档,您可以使用_.isUndefined():
_.isUndefined()
_.isUndefined(window.missingVariable); => true
你是这个意思? http://underscorejs.org/#isUndefined
_.isUndefined(value)