人気の面接質問と回答・オンラインテスト
面接対策、オンラインテスト、チュートリアル、ライブ練習のための学習プラットフォーム

集中型学習パス、模擬テスト、面接向けコンテンツでスキルを伸ばしましょう。

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