JSFiddle - React, Tailwind, and code Playground

by Kristian Jabilles

JavaScript

const numbers = [1,2,3,4];
let total = 0;
for (i of numbers) {
 	total += i;
}

console.log(total)