Skip to content

Instantly share code, notes, and snippets.

View florestankorp's full-sized avatar
🇳🇱

Florestan Korp florestankorp

🇳🇱
View GitHub Profile
@florestankorp
florestankorp / best-books.js
Created January 29, 2020 13:53
Mapping an array to object with default keys
const BOOKS = [
'1',
'The Stranger\nThe Outsider',
'Albert Camus',
'1942',
'French',
'2',
'In Search of Lost Time\nRemembrance of Things Past',
'Marcel Proust',
'1913–27',
function myReplace(str, before, after) {
let index = str.indexOf(before);
if (str[index] === str[index].toUpperCase()) {
after = `${after[0].toUpperCase()}${after.slice(1)}`;
}
return str.replace(before, after)
}
/*
You Don't Know JS: Up & Going
Chapter 1: Into Programming - PRACTICE
https://github.com/getify/You-Dont-Know-JS/blob/master/up%20%26%20going/ch1.md
*/
let accountBalance = 303.91;
let totalPriceOfPurchase = 0;
const TAX_RATE = 0.08;
@florestankorp
florestankorp / cloudSettings
Last active September 23, 2018 15:48
Visual Studio Code Settings Sync Gist
{"lastUpload":"2018-09-23T15:48:08.286Z","extensionVersion":"v3.1.2"}