SRSurandar Robinsinrobinn.hashnode.dev·Mar 15, 2023 · 3 min readFlow of code execution in JavaScriptJavaScript is a synchronous (Moves to the next line only when the execution of the current line is completed) and single-threaded (Executes one command at a time in a specific order one after another serially) language. To know behind the scene of ho...00
SRSurandar Robinsinrobinn.hashnode.dev·Mar 15, 2023 · 2 min readJavaScript FunctionsA function is a set of statements that take inputs, do some specific computation, and produce output. The idea is to put some commonly or repeatedly done tasks together and make a function so that instead of writing the same code again and again for ...00
SRSurandar Robinsinrobinn.hashnode.dev·Mar 15, 2023 · 2 min readJavaScript Object and it’s methodObjects, in JavaScript, are the most important data type and form the building blocks for modern JavaScript. These objects are quite different from JavaScript’s primitive data types (Number, String, Boolean, null, undefined, and symbol) in the sense ...00
SRSurandar Robinsinrobinn.hashnode.dev·Mar 15, 2023 · 1 min readJavaScript Array and it’s methodsJavascript Array.push() Method: Adding Element at the end of an Array. As arrays in JavaScript are mutable objects, we can easily add or remove elements from the Array. And it dynamically changes as we modify the elements from the array. JavaScript ...00
SRSurandar Robinsinrobinn.hashnode.dev·Mar 15, 2023 · 2 min readMedia queryThe Media query in CSS is used to create a responsive web design. It means that the view of a web page differs from system to system based on screen or media types. The breakpoint specifies for what device-width size, the content is just starting to ...00