Skip to content

Instantly share code, notes, and snippets.

@veritstudio
Created January 8, 2019 18:17
Show Gist options
  • Save veritstudio/be69620193ee92973fb5d2f9f31d7f53 to your computer and use it in GitHub Desktop.
Save veritstudio/be69620193ee92973fb5d2f9f31d7f53 to your computer and use it in GitHub Desktop.
Strict mode and eval
function strictPrice() {
"use strict";
var price = 200;
eval('var price = 100');
console.log(price); // prints 200
}
function nonStrictPrice() {
var price = 200;
eval('var price = 100');
console.log(price); //prints 100
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment