Tech Tutorial: Learn to Program with JavaScript – Episode 33: Global Functions

As part of the JavaScript API, the language provides many top-level or global utility functions for use by developers. In this video, we walk through some of the more commonly used global functions in JavaScript.


Personal Recommendation (unpaid)
Programming and software development are awesome! Being that you are learning along with me, there is an excellent chance you can make this a career. Based on my own life experience, let me suggest to you that you go get a Computer Science degree from Neumont College of Computer Science and kick your life into hyper-drive.

visit: https://www.neumont.edu/

Tech Tutorial: Learn to Program with JavaScript – Episode 32: JavaScript API

Every programming language provides ready-made tools, functions, objects, methods, and algorithms needed to build complex software without the need to reinvent the wheel.

In this video, we explore the JavaScript documentation in order to get a brief overview of everything its API provides developers to build amazing applications for the browser.


Personal Recommendation (unpaid)
Programming and software development are awesome! Being that you are learning along with me, there is an excellent chance you can make this a career. Based on my own life experience, let me suggest to you that you go get a Computer Science degree from Neumont College of Computer Science and kick your life into hyper-drive.

visit: https://www.neumont.edu/

Tech Tutorial: Learn to Program with JavaScript – Episode 31: Arrow Function Syntax

In this video, we walk through the new arrow function syntax, how they work, and when to use them.


Personal Recommendation (unpaid)
Programming and software development are awesome! Being that you are learning along with me, there is an excellent chance you can make this a career. Based on my own life experience, let me suggest to you that you go get a Computer Science degree from Neumont College of Computer Science and kick your life into hyper-drive.

visit: https://www.neumont.edu/

Tech Tutorial: Learn to Program with JavaScript – Episode 30: Advanced Function Syntax

In this video, we walk through some more advanced function syntax available to developers in JavaScript.


Personal Recommendation (unpaid)
Programming and software development are awesome! Being that you are learning along with me, there is an excellent chance you can make this a career. Based on my own life experience, let me suggest to you that you go get a Computer Science degree from Neumont College of Computer Science and kick your life into hyper-drive.

visit: https://www.neumont.edu/

Tech Tutorial: Learn to Program with JavaScript – Episode 29: Function Hoisting

Every programming language has its little quirks and JavaScript is no exception. Being an interpreted scripting language, JavaScript is not compiled and is executed directly in the browser. The execution environment does some quick interpreting of the file containing the code and as it does this it tries to fix common developer issues caused by laziness or lack of true understanding of how the language actually works.

One of those corrections is function hoisting. This is where all functions, no matter where they are defined within the code file, are moved by the interpreter to the top of their scope so that they exist in memory before they are called.

In this video, we dive into function hoisting in JavaScript and how it works to our benefit.


Personal Recommendation (unpaid)
Programming and software development are awesome! Being that you are learning along with me, there is an excellent chance you can make this a career. Based on my own life experience, let me suggest to you that you go get a Computer Science degree from Neumont College of Computer Science and kick your life into hyper-drive.

visit: https://www.neumont.edu/

Tech Tutorial: Learn to Program with JavaScript – Episode 28: Function Return

Being that our functions are designed to accomplish a unit of work, can take in data via arguments, and process that data and do work in the body of the function, it is also important that functions can return that manipulated data if necessary. The data returned by a function is called the function’s ‘return’ value.

In this video, we learn how to add code to return data from our basic function definitions.


Personal Recommendation (unpaid)
Programming and software development are awesome! Being that you are learning along with me, there is an excellent chance you can make this a career. Based on my own life experience, let me suggest to you that you go get a Computer Science degree from Neumont College of Computer Science and kick your life into hyper-drive.

visit: https://www.neumont.edu/