Skip to content

Instantly share code, notes, and snippets.

View vkiperman's full-sized avatar
🏠
Working from home

Vlad Kiperman vkiperman

🏠
Working from home
View GitHub Profile
// write a function that takes an argument
// and returns that argument.
function identity(x) {
return x;
}
// write two binary functions, add and mul,
// that take two numbers and return their sum and product.