1 of 18

Slide Notes

DownloadGo Live

js-functions

Published on Nov 19, 2015

No Description

PRESENTATION OUTLINE

user-Defined Functions

in JavaScript

Function: a named block of JavaScript code

define once

Call 24/7

Untitled Slide

Simple Function Demo:
Does not return a value
bit.ly/1z6713Z
bit.ly/1vrOdYe

"Classic" Function Demo
bit.ly/1pGUC4z
bit.ly/1lxjCCW

"Classic" Function

"Classic" function

  • accepts an argument(s)
  • returns a value
  • does not use getElementById
  • => Function Machine

Untitled Slide

Click to Edit

Click to add more text here

Function Expression
a.k.a.
Function Literal

Example: function isEven

http://bit.ly/1pGUC4z

function definition

function cube(n){ return n * n * n }

function definition

var cube = function(n){ return n * n * n };

function reference:

cube

function call:

cube(2);

Untitled Slide