Babatunde Imoleayo Emmanueltheimoleayo.hashnode.dev·Nov 24, 2023The JavaScript Basics -NodeJS.The importance of taking a lesson in JavaScript in building different projects using NodeJs cannot be overemphasized. In this articles, we will be talking about getting tasks done and gaining controls over your pieces of codes or program. This is goi...1 like·32 reads#techyjaunt
Raji Abimbolarajiraj.hashnode.dev·Nov 24, 2023Conditionals, Loops, and FunctionsConditionals allow us to make decisions in code based on conditions. They take the form of 1, if, else if, and else statements. For instance; let num = 10; if (num > 0) { console.log("Number is positive"); } else if (num < 0) { console.log("Number is...#techyjaunt
Abdulazeez Opeyemitechieman.hashnode.dev·Nov 23, 2023Writing on Conditional, Loops and Functions.Conditionals Conditional statements allow me to execute codes based on the conditions given. These conditions are boolean expressions, that is they return either true or false. E.g. There are several types of conditional statements in Javascript, bu...35 reads#techyjaunt