Bootcamp Notes – Day 19 (Mon) – Web Dev Fundamentals

Web Dev Fundamentals The concepts we have learned so far in our 4 week NuCamp bootcamp are vital to your success as a web developer. In our fourth week, we will be learning some more loops and ways to control…

Bootcamp Notes – Day 18 (Sat) – Classwork Assignment – Color Game

Our class worked on this Color Guessing Game. I added a few things to mine to spice it up. Some things were heard to understand. I have decided to get a tutor before it gets really hard later. Anyway you…

JavaScript Resources

JavaScript Resources W3School JavaScript Tutorial. W3School JavaScript Style Guide and Coding Conventions. Google JavaScript Style Guide (JavaScript style/convention guides) AirBnB JavaScript Style Guide (JavaScript style/convention guides) JavaScript exercises at learn-js.org: https://www.learn-js.org/ JavaScript Exercises http://www.billpegram.com/Javascript/javascript_exercises.html JavaScript Exercises for Beginners https://www.w3resource.com/javascript-exercises/ JavaScript.info provides exercises at the end of…

How would you convert a value to a string in JavaScript? How would you convert a value to a number?

  How would you convert a value to a string in JavaScript? The JavaScript String () Function can convert an object to a string. For example: let x = 12; String(x) The resulting value of x is “12”. Similarly, one…

Bootcamp Notes – Day 16 (Thurs) – Handling Data

    Handling Data Understanding Scope What is SCOPE? Scope is the context, or region of code, in which a variable exits and can be accessed. JavaScript has a lexical scope – scope of a variable depends where it was…

Web Development In 2021 - A Practical Guide

Web Development In 2021 – A Practical Guide

This is my yearly guide to web development. I describe web technologies that are commonly needed as well as new trends and give you multiple options to create and plan…

Bootcamp Notes – Day 15 (Wed) – Making Loops with JavaScript

  Making Loops   More Operators  There are some operators that are commonly used in loops because they help to increase or decrease the numeric value of a counter. Let’s take a look at the four most common… Addition assignment…

Bootcamp Notes – Day 14 (Tues) – Making Decisions with JavaScript

  Making Decisions Conditional Statements: IF Conditional statements represent a fork or multiple Forks in a path. When a program encounters a conditional statement, it will evaluate a given condition then decide what code to run based on that evaluation.…

Bootcamp Notes – Day 13 (Mon) – Introduction to JavaScript (Part 2)

Practice coding from watching class tutorials This does a silly name alert: <!DOCTYPE html> <html lang=”en”> <head> <meta charset=”utf-8″/> <title>JavaScript – Hello World!</title> </head> <body> <button type=”button” onclick=”getName()”>Click Me</button> <script> function getName() { const userName = prompt(‘What is your name?’)…

Bootcamp Notes – Day 12 (Sat) – Class Day using Zoom

  Zoom Class – Got my second badge!   Did my class assignment and got my second badge. Here is my completed project in all of it’s glory! Learned a lot about CSS and forms from doing this assignment. Here…