Skip to content

Commit 1f520f6

Browse files
authored
Merge pull request #85 from Kishore007raj/master
updated
2 parents 82c6dc3 + 989ee51 commit 1f520f6

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

docs/cheatsheet/basics.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ We all need to start somewhere, so how about doing it here.
1414
From the <a target="_blank" href="https://developer.mozilla.org/en-US/docs/Learn/JavaScript/First_steps/What_is_JavaScript">MDN web docs</a>
1515
</base-disclaimer-title>
1616
<base-disclaimer-content>
17-
JavaScript is a scripting language that allows you to implement complex features on web pages: displaying timely content updates, interactive maps, animated 2D/3D graphics, scrolling video jukeboxes, etc. You can bet that JavaScript is probably involved.
17+
JavaScript is a scripting language that allows you to implement complex features on web pages: displaying timely content updates, interactive maps, animated 2D/3D graphics, scrolling video jukeboxes, etc. You can bet that JavaScript is probably involved. It is a commonly used programming language to create dynamic and interactive elements in web applications and it is easy to learn.
1818
</base-disclaimer-content>
1919
</base-disclaimer>
2020

@@ -299,6 +299,7 @@ Bitwise operators operate on 32-bit binary representations of numbers:
299299
| Operator | Description | Example | Result |
300300
| -------- | ---------------------------- | --------- | ------ |
301301
| `&` | Bitwise AND | `5 & 1` | `1` |
302+
| `|" | Bitwise OR | `5 | 1` | `5` |
302303
| `^` | Bitwise XOR | `5 ^ 1` | `4` |
303304
| `~` | Bitwise NOT | `~5` | `-6` |
304305
| `<<` | Left shift | `5 << 1` | `10` |

0 commit comments

Comments
 (0)