Developer's Guide to VSCode
Tag: DevTools
The most popular Microsoft open source text editor is amazing.
The Really Practical Introduction To React
Tag: React
Ditch all the theories. Let's try to understand React by looking at the code.
What is React? The Most Practical Answer
Tag: React
The only answer you need before digging into React.
Modern JS Development Environment Explained
Tag: JavaScript
Okay, so you're learning modern JavaScript using Node and perhaps some React sprinkled in. You've made something good in your local development and you want to put it up on a server. What will you do next?
The Proper Guide to Semicolon in JavaScript
Tag: JavaScript
Semicolons in JavaScript may seem like optional on the surface, but under the hood, they really aren't. We'll discuss about how to handle semicolons in JS here.
JavaScript Classes
Tag: JavaScript
ES2015 or ECMAScript 6 finally introduced the class keyword into its specification. Here we will learn all about JavaScript's implementation of the class keyword
JavaScript Functions
Tag: JavaScript
Functions are the main thing you will use very often when coding with JavaScript. They give us a way to structure code in a large program into groups of useful subprograms.
JavaScript Data Types
Tag: JavaScript
All programming languages have built-in data types, and JavaScript is no exception
JavaScript Expressions and Statements
Tag: JavaScript
Learn about JavaScript's expression and statement here
Learning JavaScript Variables
Tag: JavaScript
Every programming language have a way to make variables. We'll learn JavaScript's in this post
JavaScript Local Development Environment Guide
Tag: JavaScript
Learn how to setup a local development environment for JavaScript on your computer.
JS Lexical Structure Guide (Or Simply JS Basic Rules)
Tag: JavaScript
This post attempt to describe JavaScript's building blocks: the importance of semicolons, how to comment, its encoding, case sensitivity, literals, reserved words and the significance of white space.
JavaScript or ECMAScript? Help Me Out!
Tag: JavaScript
The term ECMAScript and JavaScript that is being used interchangeably around the web, causing confusion for many developers who are diving headfirst into JavaScript. Here you will discover everything you need to know about ECMAScript.
Beginning JavaScript Introduction
Tag: JavaScript
A programming language born in ONLY 10 days has grown in use for both inside and outside of the browser. The invention of NodeJS opened the possibilities of using JS for backend development.
Managing Git Subrepositories
Tag: Git
Sometimes we want to put a part of our project in a different repo.