Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions cache/language.html
Original file line number Diff line number Diff line change
Expand Up @@ -1910,7 +1910,7 @@ <h2 id="calc" class="sub-header">演算</h2><h3 id="logic" class="sub-header">
a = b || c<br/>a = (b or c)
</td>
<td>
a = b && c<br/>a = (b or c)
a = b && c<br/>a = (b and c)
</td>
<td>
a = !b<br/>a = (not b)
Expand Down Expand Up @@ -2979,7 +2979,7 @@ <h3 id="string-format" class="sub-header">文字列加工</h3><div class="mode0"
<tr class="engine-js">
<th>JS</th>
<td>
my s = a + b;
var s = a + b;
</td>
<td>
var s = "Hello $world";
Expand Down Expand Up @@ -3405,7 +3405,7 @@ <h3 id="loop" class="sub-header">ループ</h3><div class="mode0">
<tr class="engine-js">
<th>JS</th>
<td>
for($i = 0; $i < 10; $i++){<br/>&nbsp;&nbsp;&nbsp;&nbsp;console.log($i);<br/>}
for(i = 0; i < 10; i++){<br/>&nbsp;&nbsp;&nbsp;&nbsp;console.log(i);<br/>}
</td>
<td>
list.forEach(function(e, i){<br/>&nbsp;&nbsp;&nbsp;&nbsp;console.log(e);<br/>}
Expand Down Expand Up @@ -4511,4 +4511,4 @@ <h3 id="class" class="sub-header">クラス</h3><div class="mode0">
</script>

</body>
</html>
</html>