-
JavaScript Roadmap
Reading Time: < 1 minutes JavsScript Roadmap Basics Runing Javascript Variables DataTypes and Data structure Primitive Non–Primitive Data structure Type conversion Conditional Statements Loops Operators Functions Built-in methods this Prototype Asynchronous JS Few More Concepts
-
Command Query Responsibility Segregation
Reading Time: 2 minutes Command Query Responsibility Segregation CQRS Stands For : Command Query Responsibility Segregation. What is CQRS? CQRS is an architectural pattern that separates the concerns of reading data from the concerns of updating data, by having different objects handle reading and updating data. Okay, okayI will explain You Example From The Kitchen Conclusion By Separating the […]
-
What’s New in PHP 8.2
Reading Time: 3 minutes What’s New in PHP 8.2 Introduction PHP 8.2 is a major update of the PHP language. It contains many new features, including readonly classes, null, false, and true as stand-alone types, deprecated dynamic properties, performance improvements and more. Read Only Classes You can now make the whole class as just read-only. Disjunctive Normal Form (DNF) […]
-
Node Package Manager
Reading Time: 2 minutes Node Package Manager What is Npm ? Npm is the world’s largest Software Library (Registry). Npm is also a Software Package Manager and Installer. World’s Largest SoftwareRegistry (Library) Npm is the world’s largest Software Registry. The Registry contains over 800,000 code packages. Open-source developers use Npm to share Software. Many Organizations also use npm to […]
-
Javascript Arrow Function
Reading Time: < 1 minutes JavaScript Arrow Function What Is Arrow Function ? Arrow function is one of the features introduced in the ES6 version of JavaScript. It allows you to create functions in a cleaner and shorter way as compared to regular functions. Syntax :- In fact, if you have only one parameter you can skip the parentheses () […]