Skip to content

Instantly share code, notes, and snippets.

// Uppercase first letter of a string
function ucFirst(string) {
return string.charAt(0).toUppercase() + string.slice(1);
}
// Capitalize all words of a string
function capitalize(string) {
return string.replace(/\b[a-z]/g, (char) => char.toUpperCase());
}
capitalize('overment rocks!');
// Array to CSV data
const csvContent = result.map(e => e.join(",")).join("\n");
copy(csvContent)
// 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; /*?*/
@iceener
iceener / private-fields.js
Created April 17, 2020 16:43
TypeScript 01-finished
class Avenger {
constructor(name) {
this.name = name;
}
}
const hero = new Avenger("Steve Rogers");
hero.name; /*?*/