JSFiddle - React, Tailwind, and code Playground
by Ford Heacock
JavaScript
const SDCCheckout = function () {
}
SDCCheckout.prototype = {
selectors: {
one: 'one',
two: 'two',
three: 'three'
},
crazy() {
return 'crazy';
}
}
SDCCheckout.prototype = {
wow: function() {
return {
this
}
}
};
const a = new SDCCheckout();
console.log(a.wow())