Posts by Hamilton Junior • 51 points
2 posts
-
5
votes1
answer760
viewsQ: Use of IIFE in ES6
In ES5 it is considered a good practice to use IIFE to force a local scope in our code. EX: (function(){ // some code })(); In ES6 this is still necessary? Once keyword has been introduced let for…
-
0
votes0
answers788
viewsQ: Is it possible to edit a JSON file locally?
I am beginning to learn how to use JSON and would like to know if it is possible to do operations with it(reading and writing) locally. Basically a . json file with some data and an.html file. Is it…