Skip to content

Commit e42fd67

Browse files
committed
Update
1 parent 239a53d commit e42fd67

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

index.html

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<title>JavaScript Garden</title>
77

88
<meta name="description" content="Guide to JavaScript's Quirks and Flaws">
9-
<link rel="stylesheet" href="css/garden.css" media="screen">
9+
<link rel="stylesheet" href="css/garden.css" media="all">
1010
<link rel="stylesheet" href="css/print.css" media="print">
1111
</head>
1212

@@ -64,7 +64,8 @@ <h1>JavaScript Garden</h1>
6464
</section><section><header><h3>License</h3></header>
6565
<p>JavaScript Garden is published under the <a href="https://github.com/BonsaiDen/JavaScript-Garden/blob/next/LICENSE">MIT license</a> and hosted on
6666
<a href="https://github.com/BonsaiDen/JavaScript-Garden">GitHub</a>. If you find errors or typos please <a href="https://github.com/BonsaiDen/JavaScript-Garden/issues">file an issue</a> or a pull
67-
request on the repository.</p></section></article>
67+
request on the repository. You can also find us in the <a href="http://chat.stackoverflow.com/rooms/17/javascript">JavaScript room</a> on
68+
Stack Overflow chat. </p></section></article>
6869
</header>
6970

7071
<article><section><header><h2 id="objects">Objects <a href="#intro">^</a></h2></header>
@@ -85,7 +86,7 @@ <h1>JavaScript Garden</h1>
8586
<p>There are a couple of workarounds which can be used in order make number
8687
literals act as object too.</p>
8788
<pre><code>2..toString(); // the second point is correctly recognized
88-
2. toString(); // note the space
89+
2 .toString(); // note the space left to the dot
8990
(2).toString(); // 2 is evaluated first
9091
</code></pre>
9192
</section><section><header><h3>Objects as a data type</h3></header>

0 commit comments

Comments
 (0)