Can you provide an example of writing an if statement that returns true only for a specific range, such as returning true for x if (3 < x < 9) ?
if ((myNum > 3) || (myNum < 9))
{
document.getElementById("div").innerHTML = "<button>Hello World</button>";
}