Insights, Tutorials & Engineering Notes

I write about modern JavaScript, frontend architecture, performance, and personal lessons from real-world software development.

Core react concepts

Core react concepts

May 7, 2021· Abdullah Al Noman

React is a front-end JavaScript library for building user interfaces or UI components. If you want to set up react project on your computer or to create a project, run

Javascript concepts

Javascript concepts

May 3, 2021· Abdullah Al Noman

All variables in the javascript look like same. But if we can see closely, we can see something different. If we would like to see value types we can ask the type of operators then javascript returns you an answer.

Introduction to Javascript

Introduction to Javascript

May 5, 2021· Abdullah Al Noman

JavaScript is declared using one of three keywords var, lat, and const.var is the most common declarative keyword. It’s a global variable and it’s visible out of the function and inside of the function;

10 Javascript Interview Questions

10 Javascript Interview Questions

May 8, 2021· Abdullah Al Noman

As a Javascript developer, we have to know about truthy and falsy values.In javascript, All values are truthy values unless they are defined as, undefined, null, NaN, false. An example of truthy values is ‘0’ , ’ ‘ , [],{},true. Otherwise, if we didn’t defend the value that is a falsy value.

Build a Design System with Tailwind CSS

Build a Design System with Tailwind CSS

Dec 24, 2024· Abdullah Al Noman

Learn how to organize scalable, reusable UI patterns with Tailwind CSS and component-driven development.