Data Types are a type of item that is defined by a programming language. Typically these are numbers, strings, objects, booleans, etc. … [Read more...] about Introduction to Data Types
JavaScript
Introduction to Debugging
Debugging: Finding mistakes in your program can be a very difficult task, and at times you might feel like you just can’t solve the problem (Scientific Method is one your tools, don't forget it). In many cases, finding the bug can become the job itself. … [Read more...] about Introduction to Debugging
Outputs in Programming
Anytime a computer reports back to a user with a result. There are many different types of outputs including, but not limited to, output to a file, a printer, the web, binary files, a screen, or another device. … [Read more...] about Outputs in Programming
Variable Counters in Programming
Counters are a type of variable, just like variables they are stored and used based on a location in memory. Counters typically change their value through out a program to count a value. … [Read more...] about Variable Counters in Programming
Expressions in programming
Expressions An expression is a group of variables and operators grouped together to evaluate to a value. Example: x = 3 + 5 … [Read more...] about Expressions in programming
Variables
Variables Variables allow us to associate a value to a name. These values are stored in memory and are accessible through the name of the variable. Example: age = 21 The variable age holds the value 21. Throughout your program that value can change or … [Read more...] about Variables
Programming Comments
Comments are used to make annotations to a specific part of a code. … [Read more...] about Programming Comments
Syntax
Syntax Syntax are a set of rules that a programming language sets. The rules combine symbols and formatting to define the legal structure of a computer program. For example, in the Spanish language, you have grammar that you must specifically follow, one example … [Read more...] about Syntax
Expressive Programming
Expressive Programming In this series we will take a look at some key concepts of programming. To avoid any confusion, we will not be covering any JavaScript. Instead, we are going to be focusing on some key concepts that you must first understand before moving … [Read more...] about Expressive Programming
The Programmers Mindset
Learning anything new is a challenge, especially computer programming. As with any good thing in life, it takes training and practice with a long commitment to follow through. This includes changing the way you think about your current world. Why? Because you will … [Read more...] about The Programmers Mindset