JSFiddle - React, Tailwind, and code Playground

by Jessie Lau

JavaScript

var puzzlers = [

function (x) {
    return x * 3 - 8;
},

function (x) {
    return Math.pow(x + 2, 3);
},

function (x) {
    return Math.pow(x, 2) - 9;
},

function (x) {
    return x % 4;
}


];