Javascript Basics for Your Second Programming Language

I’m learning Javascript after learning Ruby. Below are my notes

Reading Time 2 mins

The following is a guest post by Alex Au and originally appeared on his blog. Alex is currently a student at The Flatiron School. You can follow him on Twitter here.

Javascript Basics: Variables, Functions, and Scopes//plus comments!

First Experience

I’m learning Javascript after learning Ruby. Below are my notes from http://jqfundamentals.com/chapter/javascript-basics. Feel free to follow along!

My First Original Function

Blog post image: tumblr_inline_mrw9c1H7nL1qz4rgp.png

3 Lessons:

  1. Define a variable using var variable_name =

  2. A function takes parameters that you can use inside that function

  3. All variable assignments or methods end with a ;

1 Minute Assignment:

Write an original function using the basic pattern above.

Comments

  1. // is used to make a comment

    • is used to begin a multi-line comment

  2. */ is used to end a multi-line comment

Variables

  1. Variables do not begin with a number or hyphen

  2. Functions can only be called when defined as a variable

  3. Define a function as a variable using var or function

Blog post image: tumblr_inline_mrw9d1DnbT1qz4rgp.png

2 Takeaways:

  1. For functions within a function, the nested functions should use the parameters provided in the outer functions and not introduce new parameters.

  2. “Function Expressions” begin with a var, and are superior to “function declarations” because the former they are more predictable and can be used in larger scopes. See http://javascriptweblog.wordpress.com/2010/07/06/function-declarations-vs-function-expressions/ for more detail.

1 Minute Assignment:

Write a function inside a function like above and successfully call it.

Return Value

  1. Use return to perform math

  2. Wrap a command in the log(); method to print the return value in the console

  3. There can be no return values after errors.

Blog post image: tumblr_inline_mrw9dqcr1g1qz4rgp.png

Above, the return values are bar and undefined. The command hilarious; is not defined and also breaks the Javascript, preventing it from reprinting bar.

If you’re not using a dynamic editor, use console.log() to print Javascript into your browser’s console.

Scope

  • Functions create a scope wherein variables defined within are not acknowledged wihtout. This is why log( typeof foo) returns undefined, because foo is undefined outside of myFunction. It’s worth noting that the same function without ‘return’ will return undefined because it is outside scope.

Blog post image: tumblr_inline_mrw9fdRfva1qz4rgp.png

  • Because of variable scope, you can have different variables that share the same name, but exist in different scopes.

Blog post image: tumblr_inline_mrw9g3WCep1qz4rgp.png

  • Therefore it’s best to name variables uniquely and descriptively to avoid confusion between scopes.

  • Generally, use var to assign all variables because otherwise, the variable you define will default to a global scope.

Blog post image: tumblr_inline_mrw9hgZt6D1qz4rgp.png

Don’t do the above because if you set the variable a in other places in your code, there will be conflict.

To solidfy your understanding, try the following exercise:

Culminating Exercise

Build an “ATM” using only javascript. Create a file called atm.html and insert your code within two script tags. Your ATM should tell you what your starting balance is and allow you to deposit, withdraw, and exit the ATM. Assuming that you’re new to Javascript, aim for a minimal ATM program in 45 minutes.

Try the following methods in your browser’s console, as they will prove very useful. Good luck!

Blog post image: tumblr_inline_mrw9ieGvkA1qz4rgp.png

Disclaimer: The information in this blog is current as of August 21, 2013. Current policies, offerings, procedures, and programs may differ.

About Flatiron School

More articles by Flatiron School

Related Resources