JSFiddle - React, Tailwind, and code Playground

JavaScript

Object.prototype.whatAmIDoingHere = true;

var foo = {
    'alpha': 'puffin',
    'beta': 'beagle'
};
var keys = [],
    i = 0;
for (keys[i++] in foo) {}


document.body.textContent = keys;