JSFiddle - React, Tailwind, and code Playground
by mohammadAdil
HTML
<span class='test'>test</span>
JavaScript
var t = $('.test');
var s = $('.test');
if (t.is(s)) {
console.log('yes');
}
if (t.get(0) === s.get(0)) {
console.log('again yes');
}