From c7efa14df930e450d9451ee8997b914ce8cc1f57 Mon Sep 17 00:00:00 2001 From: Donald Wasserman Date: Fri, 2 Aug 2019 13:04:55 -0400 Subject: [PATCH] Updates --- hello.js | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/hello.js b/hello.js index 371fdfb..62def1c 100644 --- a/hello.js +++ b/hello.js @@ -1 +1,12 @@ console.log('hello') + +class MyClass { + myField = 1; + constructor() { + console.log('I need more syntax highligthing in vim'); + } + + mungeData(data) { + return this.myField + data; + } +}