DFW Church Virtual Service: 1/3/21

DFW Church Virtual Service: 1/3/21

Happy New Year! Welcome to the first DFW Church Virtual Service of 2021. This week’s sermon is entitled, “The Time Has Come,” preached by our congregational evangelist, Todd Asaad. We…

Sunday Service | One Body | Marshall Mead

Sunday Service | One Body | Marshall Mead

Subscribe to the latest sermons: https://www.youtube.com/playlist?list=PLy2aZj2aRvg_s4jDVjQLeZzILZGe6V3rJ Loving God, His People, His Mission. This is the vision of the Orlando Church of Christ. Subscribe to keep up with all that God…

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…