© 2023 Hashnode
#ineuron
React native is a popular javascript-base mobile app framework that allows us to build android and ios apps on the same code base. React native was first introduced by Facebook as an open-source project in 2015, and soon it became one of th…
We know that functions in javascript are First Class Citizens, so we can assign functions to variables as values, pass a function as an argument to another function and return a function from another …
Introduction In this article I'm describing CSS selectors and their types with proper examples, using only HTML and CSS. I'm describing how to select any HTML element, and then style it with CSS using…
Hi Everyone, . . What is grid layout in CSS ? CSS Grid Layout is a two-dimensional layout system for web pages. It allows developers to easily create complex and responsive grid-based layouts using a …
In this article, we will dive into the world of higher-order functions, a fundamental concept in functional programming. We will explore what higher-order functions are, how they are used, and their m…
What is web development? Web development is the field wherein you can develop a website with HTML, CSS, and Javascript. The skeleton or the structure of a web page, which arranges the contents in sequ…
Arithmetic Operators: (+, -, * , /, %, **) Addition (+) Subtraction (-) Multiplication (*) Division (/) Modulo (%) (remainder) Exponential (**) Example: Comparison Operators: (<, >, <=, >=, …
Hi everyone, today we are going to learn flexbox #So what is flexbox? Flexbox, also known as Flex Box Layout, is a layout property in CSS that makes it easy to create flexible, responsive layouts and …
Step 1: Install Node.js First, you will need to install Node.js on your Linux machine. You can download the installer from the official Node.js website and run it to install Node.js. Step 2: Install…
ECMAScript What it is? ECMAScript is a scripting language specification on which JavaScript is based. Ecma International is in charge of standardizing ECMAScript. ECMA International is an industry ass…