Tag: vanilla-javascript

To mutate, or immutate, that is the question

Dev

This is the second post in the not all compilers are created equal series, in which we compare TypeScript (TS) […]

Hernan Rajchert
Jun 13, 2019 ⋅ 9 min read

The visual learner’s guide to async JS

Dev

Have you ever watched or read hours’ worth of tutorials but were still left confused? That’s how I felt when […]

Eden Adler
May 22, 2019 ⋅ 5 min read
Clean And Scalable JavaScript

12 tips for writing clean and scalable JavaScript

Dev

JavaScript has its origins in the early web. Starting out as a scripting language, it has now evolved into a […]

Lukas Gisder-Dubé
May 7, 2019 ⋅ 7 min read

Common JavaScript “gotchas”

Dev

JavaScript has been getting a lot of new, sugary features ever since we got over Harmony, while more features can […]

Casper Beyer
Apr 26, 2019 ⋅ 4 min read

TensorFlow.js: An intro and analysis with use cases

Dev

What is TensorFlow.js? TensorFlow.js is a JavaScript library developed by Google for training and using machine learning (ML) models in […]

Ben Gubler
Apr 24, 2019 ⋅ 3 min read

5 must-read JavaScript tutorials

Dev

JavaScript has become the most popular programming language for web developers today. It’s the only language that is implemented in […]

Nathan Sebhastian
Apr 12, 2019 ⋅ 3 min read

Using Google Closure Compiler to deliver better JavaScript

Dev

Code review is the process of analyzing code through a (theoretically) rigorous process of reading and critically peer reviewing its […]

Diogo Souza
Mar 15, 2019 ⋅ 5 min read

Keeping it simple with the JavaScript console

Dev

I’ll admit it, I don’t always use a debugger to figure out what’s going wrong in my program. If my […]

Casper Beyer
Mar 8, 2019 ⋅ 3 min read

Adding pipelines to JavaScript

Dev

Pipelines enable clean chaining of operations, but they’re not quite ready just yet The usage of pipes to transport water, air, […]

Benjamin Johnson
Nov 19, 2018 ⋅ 6 min read

JavaScript design patterns

Dev

Objective This article will: Get you accustomed to Javascript patterns Explain why you should consider using design patterns in your […]

Mesh Seun
Nov 2, 2018 ⋅ 6 min read

Terrible use cases for JavaScript proxies

Dev

ECMAScript 6 introduced a number of new language features to JavaScript, amongst them were proxies. Which are, in my opinion, […]

Casper Beyer
Oct 1, 2018 ⋅ 3 min read
JavaScript typeof

JavaScript typeof: Understanding type checking in JavaScript

Dev

A very important aspect of every programming language is its type system and data types. For a strictly typed programming […]

Glad Chinda
Sep 27, 2018 ⋅ 7 min read