JSFiddle - React, Tailwind, and code Playground

JavaScript

alert("hello world");
try{
    var no = 12045;
    var patt1=/0/gi;
    
    if (no.toString().match(patt1) !== null){
        // contains the character 0
        alert("character '0' found")
    };
}catch(e){ alert(e); };