CodeOfficer (owner)

Revisions

gist: 169427 Download_button fork
public
Public Clone URL: git://gist.github.com/169427.git
Embed All Files: show embed
JavaScript #
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
(function(message){
  alert(message);
})('hello!');
 
// -------------------------
 
var Test = function() {
  var message = 'hello';
  return {
    say: function() {
      alert(message);
    }
  }
};
 
t = new Test();
t.say();
 
// -------------------------
 
var Test = function() {
  this.message = 'hello';
};
 
Test.prototype.say = function() {
  alert(this.message);
};
 
t = new Test();
t.say();