“mode ketat” Kode Jawaban

JavaScript Mode ketat dalam fungsi

myVariable = 9;
console.log(myVariable); // 9

function hello() {

    // applicable only for this function
    'use strict';

    string = 'hello'; // throws an error
}

hello();
SAMER SAEID

mode ketat

Strict mode makes several changes to normal JavaScript semantics:
-Eliminates some JavaScript silent errors by changing them to throw errors.
-Fixes mistakes that make it difficult for JavaScript engines to perform 
optimizations: strict mode code can sometimes be made to run faster than 
identical code that's not strict mode.
-Prohibits some syntax likely to be defined in future versions of ECMAScript.
Owlthegentleman

Nyalakan JS modern dengan menambahkan penggunaan yang ketat pada skrip Anda

// Non-strict code...

(function(){
  "use strict";

  // Define your library strictly...
})();

// Non-strict code... 
Aggressive Ant

Gunakan JavaScript yang ketat

// File: myscript.js

'use strict';
var a = 2;
....
Repulsive Raven

Gunakan JavaScript yang ketat

function doSomething() {
    'use strict';
    ...
}
Repulsive Raven

Jawaban yang mirip dengan “mode ketat”

Pertanyaan yang mirip dengan “mode ketat”

Lebih banyak jawaban terkait untuk “mode ketat” di JavaScript

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya