Skip to content

Instantly share code, notes, and snippets.

View chad3814's full-sized avatar

Chad Walker chad3814

View GitHub Profile
@chad3814
chad3814 / bools.js
Last active October 22, 2021 20:15 — forked from sjl/list-out-of-lambda.js
fixed jslint errors, spacing a bit
'use strict';
var not = function (x) {
if (x) {
return false;
}
return true;
};
var and = function (a, b) {