标签: javascript function
我想知道函数是否存在或在我调用之前定义。
我有这行代码:
function renderView(){ // some code }
答案 0 :(得分:3)
您可以检查typeof,如果未定义或超出范围,则返回undefined,如果是函数,则返回function
undefined
function
if ( typeof renderView == 'function' ) { // it exists }