<!DOCTYPE html>
<html>
<body>

<p>Click the button to do a global search for numbers that are NOT 5 to 8 in a string.</p>

<button onclick="myFunction()">Try it</button>

<p id="demo"></p>

<script>
function myFunction() {
    var str = "123456789";
    var patt1 = /[^5-8]/g;
    var result = str.match(patt1);
    document.getElementById("demo").innerHTML = result;
}
</script>

</body>
</html>