The humble function is the most powerful tool you will learn in any programming language.
function DoStuff () {
}
With it you will learn the basics of encapsulating functionality that you can re-use later in your work.
From it you will learn about objects, classes, inheritance, recursion, events, hooks, etc, etc.
But it all starts, it all originates, from the Humble Function.