我想知道用较短的代码替换下面代码的最佳选择:
var user = {
profile: {
name: {
first: null,
last: null,
}
}
}
if (user && user.profile && user.profile.name && user.profile.name.first) {
console.log("First name: ", first);
}
我不希望引发此异常:
TypeError: Cannot read property 'profile/name/first' of undefined
谢谢。