From 1fe1b79893f6bbaac11f0c52c887768115c68948 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=81tila=20Camur=C3=A7a=20Alves?= Date: Tue, 21 Jun 2022 15:39:56 -0300 Subject: [PATCH] Update supported-language.md Extra backtick removed --- doc/supported-language.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/supported-language.md b/doc/supported-language.md index 18ea4977..6d09af4f 100644 --- a/doc/supported-language.md +++ b/doc/supported-language.md @@ -7,7 +7,7 @@ To date, only a (small) subset of the JavaScript language is supported in Microv Note: the most up-to-date authority on supported features is the [set of test scripts](../test/end-to-end/tests), each file of which is a stand-alone Microvium script that exercises a series of features in the language. - Basic control flow statements (`if`/`else`, `while`, `do..while`, `for`) - - Primitive operators (`+`, `-`, `/`, `%`, `*`, `**`, `&`, `|`, `>>`, `>>>`, `<<`, `^`, `===`, `!==`, `>`, `<`, `>=`, `<=`, `!`, `~`, `? :`, ``typeof`) + - Primitive operators (`+`, `-`, `/`, `%`, `*`, `**`, `&`, `|`, `>>`, `>>>`, `<<`, `^`, `===`, `!==`, `>`, `<`, `>=`, `<=`, `!`, `~`, `? :`, `typeof`) - Variable declarations: `var`, `let`, and `const` - Nested functions (closures) and function/arrow expressions - Dynamically-sized arrays and objects (with limitations, see the next section), computed properties (`o[p]`).