阿里巴巴2016校园招聘 前端开发工程师(二)
时长:60分钟 总分:100分
513浏览 5人已完成答题
题型介绍
题型 | 单选题 | 填空题 | 简答题 |
---|---|---|---|
数量 | 5 | 4 | 2 |
时长:60分钟 总分:100分
513浏览 5人已完成答题
题型 | 单选题 | 填空题 | 简答题 |
---|---|---|---|
数量 | 5 | 4 | 2 |
function showMoney( ) { (1) }; var personA = new Object; var personB = new Object; personA.money= "100"; personB.money= "150"; personA.showMoney= showMoney; personB.showMoney= showMoney; 输出结果: personA.showMoney( ); //"100" personB.showMoney( ); //"150" </pr
// Should equal 15 sum(1, 2, 3, 4, 5); // Should equal 0 sum(5, null, -5); // Should equal 10 sum('1.0', false, 1, true, 1, 'A', 1, 'B', 1, 'C', 1, 'D', 1, 'E', 1, 'F', 1, 'G', 1); // Should equal 0.3, not 0.30000000000000004 sum(0.1, 0.2); </pr