热门面试题与答案和在线测试
面向面试准备、在线测试、教程与实战练习的学习平台

通过聚焦学习路径、模拟测试和面试实战内容持续提升技能。

WithoutBook 将分主题面试题、在线练习测试、教程和对比指南整合到一个响应式学习空间中。

面试准备

JavaScript 面试题与答案

Test your skills through the online practice test: JavaScript Quiz Online Practice Test

相关差异对比

问题 11. What's relationship between JavaScript and ECMAScript?

ECMAScript is yet another name for JavaScript (other names include LiveScript). The current JavaScript that you see supported in browsers is ECMAScript revision 3.

这有帮助吗? 添加评论 查看评论
 

问题 12. What is negative infinity?

It's a number in JavaScript, derived by dividing negative number by zero.

You can only use it as Number.NEGATIVE_INFINITY. The value of this attribute is -Infinity.

这有帮助吗? 添加评论 查看评论
 

问题 13. What is this keyword?

It refers to the current object.

这有帮助吗? 添加评论 查看评论
 

问题 14. What is Javascript?

A scripting language is a simple, interpreted programming language.
Scripts are embedded as plain text, interpreted by application.

Simpler execution model: don't need compiler or development environment.
Saves bandwidth: source code is downloaded, not compiled executable.
Platform-independence: code interpreted by any script-enabled browser.

But: slower than compiled code, not as powerful/full-featured.

这有帮助吗? 添加评论 查看评论
 

问题 15. What is identifier in Javascript?

Identifier– The name of a variable (or function)
Starts with a letter, can contains digits & underscores
Case Sensitive!!
Should be meaningful to someone reading your code
Good: accountBalance, amountDue

Bad: bal, due,

Just plain wrong: 2bOrNotToBe, +var, total-value

这有帮助吗? 添加评论 查看评论
 

用户评价最有帮助的内容:

版权所有 © 2026,WithoutBook。
JavaScript vs JqueryJavaScript vs VBScriptJavaScript vs TypeScript