File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ See also [issue #51](https://github.com/Microsoft/pxt/issues/51).
5151* all arithmetic operators (including bitwise operators); note that in microcontroller targets
5252 all arithmetic is performed on integers, also when simulating in the browser
5353* strings (with a few common methods)
54- * [ string templates] ( https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals ) (``` x is ${x} ``` )
54+ * [ string templates] ( https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals ) (`` `x is ${x}` `` )
5555* arrow functions ` () => ... `
5656* classes with fields, methods and constructors; ` new ` keyword
5757* array literals ` [1, 2, 3] `
@@ -84,7 +84,7 @@ unlikely to miss it):
8484* ` yield ` expression and `` function* ``
8585* ` await ` expression and ` async function `
8686* ` typeof ` expression
87- * tagged templates ``tag `text ${expression} more text```; regular templates are supported
87+ * tagged templates `` tag `text ${expression} more text` `` ; regular templates are supported
8888* binding with arrays or objects: ` let [a, b] = ...; let { x, y } = ... `
8989* ` with ` statement
9090* ` eval `
You can’t perform that action at this time.
0 commit comments