JSFiddle - React, Tailwind, and code Playground
JavaScript
Object.prototype.count = function()
{
c = 0;for(i in this){if (this.hasOwnProperty(i)){c++;}};return c;
}
MyObject = {
a : '0',
b : '1',
c : '2'
}
alert(MyObject.count())