Coersion (CR26)
1: const num = 42;
2: const str = String(num); // Number to string
3:
4: const bigFromStr = BigInt(str); // String to BigInt
5: const bigFromBool = BigInt(true); // BigInt value 1n. Use with care (less common).
6: console.log(bigFromStr);
7: console.log(bigFromBool);
8:
9:
10:
BigInt Conversions: // No direct conversion from null, undefined, or NaN to BigInt 42n 1n
Coersion context:
ES6 context:
- (2024) Notes about JS Closures. #ES6
- (2024) Notes about Javascript asynchronous programming. #ES6
- (2022) Modern Javascript books #ES6 #Doc
- (2021) JS learning start point #ES6
- (2021) Maximilian Schwarzmüller Javascript lecture #ES6
- (2021) Javascript interview question from Happy Rawat #ES6
- (2021) Javascript tests #ES6
- (2016) New unique features of Javascript (updated). #ES6
Comments (
)

Link to this page:
http://www.vb-net.com/JavascriptES6/CR26.htm
|