浏览代码

Added missing syntax highlighting for code blocks

noahleigh 8 年之前
父节点
当前提交
26055ddb48
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      README.md

+ 2 - 2
README.md

@@ -117,7 +117,7 @@ The current version of JSFuck uses it a lot but we not sure if they are fundamen
 
 Using the array wrapping trick mentioned above:
 
-```
+```js
 ++[ 0  ][  0  ] // 1
 ++[ [] ][ +[] ] // 1
 ```
@@ -136,7 +136,7 @@ Getting an element by index in an empty array will return `undefined`:
 
 Casting `undefined` to Number will result in not-a-number:
 
-```
+```js
 +[][[]]    // +undefined = NaN
 ```