Introduction to JavaScript – Create a Variable: const

2019-02-10T05:39:57-05:00

Introduction to JavaScript - Create a Variable: const Let's dive in and see a variable in the wild. Here is how you declare a constant variable: const myName = 'Seth'; console.log(myName); // Output: Seth Let's consider the Read More...

Introduction to JavaScript – Create a Variable: const2019-02-10T05:39:57-05:00

Introduction to JavaScript – Variables

2019-02-10T06:08:15-05:00

Introduction to JavaScript - Variables Programmers use variables to write code that is easy to understand and repurpose. Imagine you're writing a weather app. Your thermometer outside reports the temperature in Celsius, but your goal is to record the Read More...

Introduction to JavaScript – Variables2019-02-10T06:08:15-05:00