MAMujeeb Ahmedinmujeebahmed.hashnode.dev路Mar 5, 2022 路 3 min readJavaScript Objects馃ぉ.Objects The Object class represents one of JavaScript's data types. It is used to store various keyed collections and more complex entities. Objects can be created using the Object() constructor or the object initializer / literal syntax. Creating a ...01V
MAMujeeb Ahmedinmujeebahmed.hashnode.dev路Mar 3, 2022 路 10 min readJavaScript Arrays馃ぉJavaScript Arrays An array is a variable that can hold several values. Example: const cars = ["Saab", "Volvo", "BMW"];//Array consisting of some values. console.log(cars);//displaying the array. Output: (3) ['Saab', 'Volvo', 'BMW'] What's the Point o...02DJ
MAMujeeb Ahmedinmujeebahmed.hashnode.dev路Feb 22, 2022 路 9 min readBefore Web Development1. What was the need for a Web Application? In earlier computing models, such as client-server, the application's processing load was split between code on the server and code stored locally on each client. To put it another way, each application h...00