coding

Javascript – How To Code

https://www.digitalocean.com/community/tutorial_series/how-to-code-in-javascript How To Code in JavaScript by Lisa Tagliaferri and Tania Rascia JavaScript is a high-level, object-based, dynamic scripting language popular as a tool for making webpages interactive. How To Use the JavaScript Developer Console June 27, 2017 This tutorial will go over how to work with the Console in JavaScript within the context of […]

Javascript – How To Code Read More »

Javascript Notes – One

List of declared keywords. Good basic steps to remember // 1. Declare variables and capture input. const adjective = prompt(“Give me a compliment”); console.log( adjective ); // 2. Combine the input with other words to create a story. const compliment = `<p>You are so right I am: ${adjective} just the so …</p>`; console.log( compliment );

Javascript Notes – One Read More »