© 2023 Hashnode
#iwritecode-hiteshchoudhary-lco-markdown-git-github
Prototypes in Java Script : In JavaScript, every function and object has a property named "prototype" by default. Whenever we create an object or function JavaScript engine adds a built-in Prototype p…
React native is a popular javascript-base mobile app framework that allows us to build android and ios apps on the same code base. A detailed article on react-native installation Now let's how we can make our first app in react-native. Ini…
Markdown is a markup language for formatting text using simple syntaxes. It is widely used for blogging, websites, comment management services, readme files, and documentation. Unlike HTML, markdown d…
JavaScript is a single-threaded programming language, which means it can only process one task at a time. However, it uses something called the Event Loop to handle asynchronous tasks, such as user in…
A callback function is a function that is passed as an argument to another function and is executed after the outer function has been completed. Why do we use the callback function? we use the callbac…
Javascript functions are blocks of code that can be executed whenever they are called. They are used to organize and reuse code, and to create modular and maintainable programs. There are several type…
JavaScript objects are a powerful tool for organizing and manipulating data in a structured way. They are similar to real-world objects in that they have properties and methods that can be used to acc…
Objects : Objects in javascript are one of the non-primitive datatypes which allow us to store multiple values in key-value pairs. These key-value pairs are known as properties. The key is also called…
What is Object in JavaScript? In JavaScript, objects are king. If you understand objects, you understand JavaScript. In JavaScript, almost "everything" is an object. Booleans can be objects (if def…
Prototype Every object and function in javascript has an inbuilt property called prototype. In simple terms properties and methods can be shared through a base object(which is what we call a prototoyp…