JSFiddle - React, Tailwind, and code Playground
JavaScript
function test() {
var rateslength = $('.roaming-rates-within .roaming-rates-block').length
if (rateslength > 7) {
console.log('below 7')
}
else if(rateslength >= 8) {
console.log('Above 7');
} else {
console.log('below 5');
}
}