samuel jackjacknodes.hashnode.dev·Sep 16, 2023Java Programming in Cmd: Everything You Need to Get StartedSo you want to learn Java programming but don't have an IDE installed yet? No problem, you can get started with Java using just your command line. CMD, or the Windows Command Prompt, has everything you need to compile and run simple Java programs. Wh...DiscussJavaScript
Debugged Prodebuggedpro.hashnode.dev·Sep 11, 202310 JavaScript code examples covering a range of concepts and use cases, from basic to more advancedExplanation of each of the JavaScript code examples: 1. Hello World: console.log("Hello, World!"); This simple code uses the console.log() function to print the text "Hello, World!" to the console. It's the traditional starting point for learning an...DiscussJavaScript
Chris Awoketechwritinghub.com.ng·Sep 6, 2023JavaScript Modules Explained - Best Ways to Create, Export and Imports ModulesIntroduction Let's imagine you're building a web application with hundreds of interrelated functions, variables, and classes. Without the right structure, this codebase will look like a scattered jigsaw, difficult to understand or modify without caus...DiscussJavaScript
S Kumar Dhananjayakdexplorations.hashnode.dev·Sep 4, 2023JavaScript Trends and Future: Navigating the Ever-Evolving LandscapeIn the world of web development, JavaScript has established itself as the backbone of modern web applications. With its ever-growing ecosystem and the constant evolution of web technologies, JavaScript remains at the forefront of innovation. In this ...DiscussJavaScript
Adarsh Agnihotriadarshagnihotri.hashnode.dev·Aug 28, 2023who, what, why, where, when, and how. All about JavaScript Functions.Why Do we need functions? Functions serve as a way to encapsulate a set of instructions into a single unit that can be invoked and reused throughout your code. Imagine you have a block of code that you use repeatedly. (Alright... alright... Don't lea...Discuss·11 likes·154 readsJavaScript
Nitish Prajapatinitishpjpt.hashnode.dev·Aug 24, 2023JavaScript Basics for Beginners: A Guide to Variables, Data Types, Functions, and the DOMIntroduction The role of JavaScript in web development Why learning JavaScript is essential for building interactive web applications 1. Getting Started with JavaScript Brief history and evolution of JavaScript Where JavaScript code is typicall...DiscussJavaScript
Mahavir DS Rathoremahavir.hashnode.dev·Aug 22, 2023Test your JavaScript Skills:Fundamentals-5Introduction Namaste, In this blog I will discuss 7 FAQs on Javascript fundamentals. Identify the output of the below program let $=20; console.log("value", $); a.error b.20 c.undefined d. null e.no output Answer:b Reason: $ is a valid var...DiscussJavaScript
Mahavir DS Rathoremahavir.hashnode.dev·Aug 21, 2023JavaScript - The 'const' keywordIntroduction Namaste, In this blog I will discuss the below topics. What is the 'const' keyword? Using the 'const' keyword Complete source code What is the 'const' keyword? The variables declared using 'const' keyword cannot be changed i.e. once...DiscussJavaScript
Mahavir DS Rathoremahavir.hashnode.dev·Aug 21, 2023JavaScript - The 'let' keyword behaviourIntroduction Namaste, In this post I will discuss the below topics What is the 'let' keyword? Using the 'let' keyword in the global scope Using the 'let' keyword in the function scope Cannot re-declare a variable Using the 'let' keyword in the b...DiscussJavaScript
Mahavir DS Rathoremahavir.hashnode.dev·Aug 21, 2023JavaScript - The 'var' keyword behaviourIntroduction Namaste, In this article I will discuss the below topics What is the 'var' keyword? Using the 'var' keyword in the global scope Re-declaration of variable Using the 'var' keyword in the function scope Does not have a block scope Li...DiscussJavaScript