From 234d33756089f94c8a047aaffeb2584c0fc1e078 Mon Sep 17 00:00:00 2001 From: Steven Winston Date: Sun, 12 Mar 2017 15:00:46 +0200 Subject: [PATCH] test --- test.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test.js b/test.js index f3ce1d2..dc2a4e0 100644 --- a/test.js +++ b/test.js @@ -1,6 +1,10 @@ var Jet = function(color, size) { this.color = color; this.size = size; + + this.takeOff = function() { + console.log('lift off!'); + } } module.exports = Jet;