From f536795832a577705f8e44b118487b79f0a539f1 Mon Sep 17 00:00:00 2001 From: Steven Winston Date: Sun, 12 Mar 2017 14:50:26 +0200 Subject: [PATCH] fly --- index.js | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 index.js diff --git a/index.js b/index.js new file mode 100644 index 0000000..0a6306e --- /dev/null +++ b/index.js @@ -0,0 +1,14 @@ +var frontEnd = ['HTML', 'CSS', 'Javascript']; +var df = 1 +var frontEndLangages = frontEnd; + +var Jet = function(color, size) { + this.color = color; + this.size = size; + + this.fly = function() { + console.log('whoosh!'); + } +} + +module.exports = Jet;