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
// Uppercase first letter of a string | |
function ucFirst(string) { | |
return string.charAt(0).toUppercase() + string.slice(1); | |
} |
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
// Capitalize all words of a string | |
function capitalize(string) { | |
return string.replace(/\b[a-z]/g, (char) => char.toUpperCase()); | |
} | |
capitalize('overment rocks!'); |
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
// Array to CSV data | |
const csvContent = result.map(e => e.join(",")).join("\n"); | |
copy(csvContent) |
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
// Destructuring | |
const args = [1, 2, 3, 4]; | |
const [a, b, c, d] = args; | |
console.log(a, b, c, d); | |
const coords = { x: 1, y: 10 }; | |
const { x: horizontal, y } = coords; | |
horizontal; /*?*/ | |
y; /*?*/ |
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
class Avenger { | |
constructor(name) { | |
this.name = name; | |
} | |
} | |
const hero = new Avenger("Steve Rogers"); | |
hero.name; /*?*/ |
NewerOlder