Variable Scopes A variable’s scope is a section of a program where that variable exists. You can have two types of variable scopes: local, or global. … [Read more...] about Global and Local Scopes
JSecademy
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
Code Execution
When your programs become larger than one statement, the statements are executed from left to right, top to bottom. In more complex programs you can stop execution, jump to another file, continue execution there, then return back to the file and continue on with … [Read more...] about Code Execution
How to add eMojis to the Terminal using OSX and Linux
Step 1: Find your eMoji Step 2: Make sure to have ZSH installed and configured Step 3: Setup your terminal to output the eMoji If you want to configure different values use the following escape sequences. Sequence Printed %T System time … [Read more...] about How to add eMojis to the Terminal using OSX and Linux
What are Programming Statements?
Statements In programming, a statement is a meaningful declarative sentence that is used to describe what a program will be doing. … [Read more...] about What are Programming Statements?
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
Are you a programmer?
Programming Challenge Now that you know programming is more than just "working with computers", I want to give you a taste of what you’re getting into so that you’re prepared. Some of the general ideas that float around the programming community are “you are a … [Read more...] about Are you a programmer?
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