This file contains hidden or 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
| { | |
| "user_id": "ce34953c40f3bc931bbf9b76a0f48e35f6337651", | |
| "email": "matt+test+student@coast.ai", | |
| "email_verified": true, | |
| "nickname": "Test name", | |
| "first_name": "John", | |
| "last_name": "Smith", | |
| "is_coastline_user": true, | |
| "courses": [ | |
| "ca_traffic_school" |
This file contains hidden or 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 crypto = require("crypto"); | |
| const wordList = [ | |
| "abandon", | |
| "ability", | |
| "able", | |
| "about", | |
| "above", | |
| "absent", | |
| "absorb", |
This file contains hidden or 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
| function computeBitcoinStats() { | |
| const formatterNumer = new Intl.NumberFormat("en-US", {}); | |
| const formatterPercent = new Intl.NumberFormat("en-US", { | |
| maximumFractionDigits: 4, | |
| }); | |
| const formatterDate = new Intl.DateTimeFormat("en-US", { | |
| month: "long", | |
| year: "numeric", | |
| }); | |
| let height = 0; |
OlderNewer