Skip to content

Instantly share code, notes, and snippets.

View Matduro's full-sized avatar

Mathieu Rousseau Matduro

View GitHub Profile
const state = {
days: [
{
id: 1,
name: "Monday",
appointments: [1, 2, 3],
interviewers: [1, 2],
spots: 99
},
{
@Matduro
Matduro / ultimate-ut-cheat-sheet.md
Created March 7, 2021 21:42 — forked from yoavniran/ultimate-ut-cheat-sheet.md
The Ultimate Unit Testing Cheat-sheet For Mocha, Chai, Sinon, and Jest
@Matduro
Matduro / snippet.js
Created March 7, 2021 00:47 — forked from mpj/snippet.js
someOrder = {
items: [
{ name: 'Dragon food' , price: 8, quantity: 8 },
{ name: 'Dragon cage (small)', price: 800, quantity: 2 },
{ name: 'Shipping', price: 40, shipping: true }
]
}
orderTotal = (order) => {
totalNormalItems =