-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.js
51 lines (42 loc) · 1.06 KB
/
main.js
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
import { Meteor } from 'meteor/meteor';
import { Players } from './../imports/api/players';
Meteor.startup(function () {
});
// class Person {
// constructor(name = 'Anonymous', age = 0) {
// //super(props);
// this.name = name;
// this.age = age;
// }
// getGreeting() {
// //return 'Hi! I am ' + this.name + '.';
// return `Hi! I am ${this.name}`; // template strings
// }
//
// getPerson() {
// return `${this.name} is ${this.age} year(s) old.`;
// }
// }
//
// class Employee extends Person {
// constructor(name, age, title) {
// super(name, age);
// this.title = title;
// }
//
// getGreeting() {
// if(this.title) {
// return `Hi! I am ${this.name}. I work as a ${this.title}.`;
// } else {
// return super.getGreeting();
// }
// }
// hasJob() {
// return !!this.title;
// }
//
// }
//
// let me = new Employee('Mike', undefined, undefined);
// //console.log(me.getPerson());
// console.log(me.hasJob());