这将是一次迅速的讨论,但我只想就今天上午的总结提出一些反馈意见。 了解这一点......
var addTwoNumbers = function(intOne, intTwo) {
if ((typeof intOne == number ) && (typeof intTwo == number )) {
document.write(intOne + intTwo);
} else {
document.write( Unable to perform operation. );
}
};
addTwoNumbers(3, 4);
......行为与......基本相同......
(function(intOne, intTwo) {
if ((typeof intOne == number ) && (typeof intTwo == number )) {
document.write(intOne + intTwo);
} else {
document.write( Unable to perform operation. );
}
})(3, 4);
......可以说,自发功能中的第一组母轮是“绕行”的,还是以提及的方式围绕职能执行开展工作? 实际上,(
) 是该方法的名称,实际上不是该方法的名称? 而且,由于该职能是在直接执行时宣布的,该职能是否比使用可变名称参照法的更快? 正义胜诉。