JSFiddle - React, Tailwind, and code Playground
by MartijnR
JavaScript
obj = {
test: {
me: function(){
$.each(
$(this), function(k,v){
console.log('key:', k);
console.log('value:', v);
}
)
}
}
}
obj.test.me()