I searched something on SO and run into this, which is a way to retrive a file from your local computer and use it in browser, with AngularJS.
this.http.get(<path_to_your_json_file>)
.success((data) => console.log(data));
I wonder what this JavaScript syntax could mean:
(data) => console.log(data)
I don't know if is something AngularJS specific, but I mostly doubt so. Do you know more interesting tweaks which are no so common in daily use of JavaScript?