You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
var name = 'Tom';
(function() {
if (typeof name == 'undefined') {
var name = 'Jack';
console.log('Goodbye ' + name);
} else {
console.log('Hello ' + name);
}
})();
The text was updated successfully, but these errors were encountered:
qappleh
changed the title
2019-08-01(第9题): 请写出以下代码的输出结果:
第9题(2019-08-01): 请写出以下代码的输出结果:
Aug 1, 2019
The text was updated successfully, but these errors were encountered: