YYashasinwebdec.hashnode.dev·Sep 20, 2024 · 1 min readVariables in JavaScriptA variable is something that stores some value assigned to it. In JavaScript variables can be declared in 3 ways. var - allows redeclaration let - allows reassigning values to a variable. doesn't allow redeclaration of a variable. const - declared va...00
YYashasinwebdec.hashnode.dev·Sep 19, 2024 · 1 min readType conversion in JSType conversion in any language is simply changing the datatype of one variable to another required datatype. Type conversion in Java script is simple yet confusing. We can convert data types by using these basic methods : Number () : converts a var...00
YYashasinwebdec.hashnode.dev·Mar 16, 2024 · 2 min readJavaScript Stack and Heap memoryBefore we talk about memory allocation in java script let us first understand what is memory allocation. Memory allocation is a process of reserving memory space for purpose such as storing data or program instructions. With respect to programming ,m...00
YYashasinwebdec.hashnode.dev·Oct 14, 2023 · 1 min readHistory of Java scriptJava script was developed by Brendan Eich in 1995. But before the name "Javascript", it was originally named "Mocha" followed by the name "Live script" and then later on "Java script". Why and when Java script codes were beginning to be implemented? ...01R