From 4fbb7c295a223d100763d6f6c8ffd1aa2f3f7970 Mon Sep 17 00:00:00 2001 From: Donald Wasserman Date: Fri, 2 Aug 2019 13:10:30 -0400 Subject: [PATCH] More fun with js --- hello.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/hello.js b/hello.js index 62def1c..487c0b1 100644 --- a/hello.js +++ b/hello.js @@ -9,4 +9,8 @@ class MyClass { mungeData(data) { return this.myField + data; } + + mungeMoreData(data) { + return this.mungeData(data) * data; + } }