← All tutorials

GoCareerGo Tutorials

JavaScript Tutorial

Variables to closures, promises, the DOM and OOP — a complete JS reference.

Strict Mode

"use strict" and how it changes JS error behaviour.

Quick-reference summary — a full handcrafted walkthrough is coming soon for this topic.

"use strict" and how it changes JS error behaviour.

  • Category: JavaScript Basics — part of the JavaScript Tutorial on GoCareerGo
  • Read the short summary above, then check the linked docs for full syntax/behaviour
  • Interview tip: be ready to explain "Strict Mode" in one sentence, then back it up with a tiny example
// Strict Mode — minimal example
console.log("Strict Mode");
Tip

Quick recall: "Strict Mode" — "use strict" and how it changes JS error behaviour.