TIL Parsing XML in ES6

In this TIL, we learn to tackle XML parsing with javascript, and es6. Read more

Similar

The Reflect API of ES6

Reflection in a programming language is the act of inspecting, dynamically calling, and modifying classes, objects, properties, and methods. In other words, reflection is the ability of the program…...

Read more »

Deferred Evaluation and ES6 Proxies

During my time at Finsify, we had to crawl from a large number of websites. Although each website was different, the core operations were the same: click on links, fill text fields, parse data from tables, and so on. And these operations should run in ser... (more…)

Read more »

Babel and ES6

Babel is a JavaScript compiler. That means with Babel, you can write syntax in the latest version of JavaScript, and it will transform the code to be browser-compatible JavaScript. This is awesome, because it is good to learn the most up to date version, ... (more…)

Read more »