プロンプト ボックスを使用していますが、プロンプト ボックスのテキスト ボックスにデータを入力せずにキャンセルを押すと、プロンプト ボックスの後のロジックが実行されません。[OK] を押すと、そのコードが実行されます。データを入力して [OK] を押した後に発生するので、promtbox で [キャンセル] を押してもコードを実行するにはどうすればよいですか?
var textentered=prompt("Enter text/int:","");
if(textentered.length > 0){
alert(textentered);
}
// this is just example code below the promptbox which is not executed after i press //cancel in prompt box
text=[];
array=[];
document.getElementById('test').innerHTML='';