From 6dd4c223e42b231caf2c04bf22bdf4af3eda47b8 Mon Sep 17 00:00:00 2001 From: Anto Christopher <93177734+anto-deepsource@users.noreply.github.com> Date: Mon, 7 Feb 2022 13:34:17 +0530 Subject: [PATCH] Update js.js --- js.js | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/js.js b/js.js index 8a43beb..6867930 100644 --- a/js.js +++ b/js.js @@ -25,3 +25,11 @@ const very_bad_variable = ">:D"; let non_const_and_unused = 'x' && 'y' let x = 1; let x2 = 2; + +const obj = { + key: () => console.log("e"), +}; + +const obj1 = { + key: () => console.log("e"), +};