Home | Applications | Documentation | Transport | Personal |

Documentation

Home | Cloud | C# | Database | DevOps | Revision | Web |

Web | AJAX | CSS3 | DOM | HTML5 | JavaScript | JQuery | Node.JS | TypeScript |

JavaScript

Introduction

This contains example code and reminders of syntax.

Fucntion Expressions

These are similar to Delegates in C#. They are variables that contain an expression that is a function. These can be called from other functions or as parameters in other functions.
var sayHi = function(){
console.log("Hello");
}
sayHi():

or

var sayHi = () => console.log("Hello");