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
. |
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
/** government */ | |
let dollar = new Intl.NumberFormat('en-US', { | |
style: 'currency', | |
currency: 'USD', | |
}); | |
const A = 730 * 1000000 // Raider | |
const B = 7 * 1000000 // Abrams | |
const C = 3 * 1000000000 // LA, Seawolf, Verginia | |
/** citizenship */ |
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
// The special theory of relativity implies that | |
// only particles with zero rest mass (i.e., photons) | |
// may travel at the speed of light, and that | |
// nothing may travel faster. | |
const nothing = 0 | |
const speedOfLight = Infinity | |
function specialRelativity () { | |
return nothing >= speedOfLight | |
} |