SASameerah Adeshinainsamstech.hashnode.dev·Aug 27, 2022 · 2 min readJavaScript Conditionals & Logical OperatorsWhat are conditionals? A conditional regulates behavior and decides whether or not certain bits of code can be executed. Types of conditionals Examples if statements if (12 < 5) { console.log(true); } else statements if (12 < 5) { console.log(true)...00
SASameerah Adeshinainsamstech.hashnode.dev·Aug 13, 2022 · 2 min readJavaScript Data TypesThere are five data types in JavaScript, and they are: Strings In my previous posts on JS Basics, I discussed strings. Strings are data, embedded inside quotation marks. fridge('sweets'); Numbers In JavaScript, numbers can be assigned to strings. va...01A
SASameerah Adeshinainsamstech.hashnode.dev·Aug 9, 2022 · 1 min readOperating SystemWhat is an operating system? The software that allows the computer hardware and software to interact and communicate is known as the operating system. It is the primary piece of software that all computers need in order to run. Examples MS DOS (Micro...00
SASameerah Adeshinainsamstech.hashnode.dev·Aug 2, 2022 · 2 min readBasics of JavaScriptFunctions A function instructs a machine to perform a specific action. Functions can accept arguments to supply the computer with more data. EXAMPLE drawBox(blue); Arguments An argument is additional data that instructs a function on how to operate....00
SASameerah Adeshinainsamstech.hashnode.dev·Jul 31, 2022 · 2 min readTech CareersThere are different branches of computer science and computer engineering, but you can choose to build it up as a career, depending on the branch you're good at. There are a lot of branches, but here are some: Careers CareerUse Frontend engin...00