Update javascript.html.markdown

// Exponentiation (x**y, x to the yth power)
2**3;  // => 8
This commit is contained in:
minoblue 2024-10-13 23:10:28 +05:30 committed by GitHub
parent 7678771275
commit d0cf957d0b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -60,6 +60,9 @@ doStuff()
30 % 4; // = 2
18.5 % 7; // = 4.5
// Exponentiation (x**y, x to the yth power)
2**3; // => 8
// Bitwise operations also work; when you perform a bitwise operation your float
// is converted to a signed int *up to* 32 bits.
1 << 2; // = 4