From 3c6050f61f99145845bb968150393b3395989477 Mon Sep 17 00:00:00 2001 From: Dmitry Iv Date: Thu, 23 May 2024 10:03:03 -0400 Subject: [PATCH] Update README.md --- README.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 7f3c3bf..a743d6b 100644 --- a/README.md +++ b/README.md @@ -53,13 +53,12 @@ _Just-in_ is no-keywords JS subset, _JSON_ + _expressions_ (see [thread](https:/ + `a ||= b`, `a &&= b` + `a ? b : c`, `a?.b` + `...a` -+ `[a, b]` Array -+ `{a: b}` Object -+ `(a, b) => c` Function ++ `[a, b]` ++ `{a: b}` ++ `(a, b) => c` + `// foo`, `/* bar */` + `true`, `false`, `null`, `NaN`, `undefined` + `a in b` - ```js