Categories
Codes Javascript

New Exciting Features in JavaScript ES2020

ES2020 has already been finalized! In this post, I share some of the useful features we can already expect from the latest update in JavaScript.

Categories
Habits Humans

Humans = Habit-based Programs (Part 3/3)

In this third part of Humans = Habit-based Programs post, I will share about the ways of maintaining your habit and what to do if you have a setback.

Categories
Habits Humans

Humans = Habit-based Programs (Part 2/3)

In this second part of Humans = Habit-based Programs post, I share about the ‘how’ to consciously program a new habit.

Categories
Habits Humans

Humans = Habit-based Programs (Part 1/3)

This is the first part of the Humans = Habit-based Programs post. I’ve been learning quite a lot about habits, implement it myself, and it works so far. I would like to share about it, on how it could make oneself better or worse, and the things one must be aware about habits.

Categories
Habits Humans

A Long Introduction of My Next Post

I am too excited on writing my next post: it’s about habit, not a programming tutorial, sorry. I intended to write this as an introduction, but my fingers just kept on typing, and it became this long. It’s about why I want to write about habits. Enjoy your reading!

Categories
Codes Javascript

JavaScript: var, let, const

What is the difference between var, let, and const in JavaScript? In this post, I will share about the difference in them, and recommendation on which to use.

Categories
Codes Javascript Regex

Simple Regex Implementation In Javascript

In this post, I shared about some simple regex implementation using JavaScript. It consists of built-in JavaScript functions, and implementations in some real life use cases. Oh, as usual I also included the code snippets, so you will be more convinced that the code is working. Click on the title to read more…

Categories
Codes Regex

Regex: Lookahead

I made this post as a sub-topic for the main “Simple Regex Implementation in JavaScript” post, but it was getting too long as I covered quite a lot about regex lookahead. This post includes step-by-step understanding of lookahead in regex and code snippets to practice and implement yourself. Click on the title to read more…

Categories
Codes Regex

Regex For Starters

My first tutorial in this blog! Regex might seem difficult to understand, but if we break it down to little pieces, it’s actually quite easy. I covered some basic things with examples beginners need to know about regex: the base syntax, flags, and character classes. Click on the title to read more…