JSFiddle - React, Tailwind, and code Playground
HTML
<div id="price" data-ticket-price="0">
123
</div>
<span></span>
JavaScript
$price = $('#price');
const realPrice = $price.data( 'ticket-price' );
const price = isNaN( realPrice ) ? $price.text() : realPrice.toString();
$('span').html( isNaN( price ) ? 0 : price );