From 7fd0405ae504bcdd4beae43fba1e89014920d932 Mon Sep 17 00:00:00 2001 From: Leeya Shaltiel Date: Tue, 5 Feb 2019 17:01:22 +0200 Subject: [PATCH] rename to l --- js/hello_world.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/hello_world.js b/js/hello_world.js index 5527807..73d6089 100644 --- a/js/hello_world.js +++ b/js/hello_world.js @@ -1,9 +1,9 @@ function main() { console.log('Hello world!'); - console.log('a() ===', a(1,1)); + console.log('l() ===', l(1,1)); } -function a (c,b) { +function l (c,b) { return c * b; }