Created
March 28, 2021 20:41
-
-
Save nitayneeman/36231820444fc11e804ce9dc83ea2925 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const addition = 3n + 2n; | |
console.log(addition); // 5n | |
const subtraction = 3n - 2n; | |
console.log(subtraction); // 1n | |
const multiplication = 3n * 2n; | |
console.log(multiplication); // 6n | |
const division = 3n / 2n; | |
console.log(division); // 1n | |
const modulo = 3n % 2n; | |
console.log(modulo); // 1n |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment