15 lines
212 B
HTML
15 lines
212 B
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<script>
|
|
|
|
async function fetch_status() {
|
|
let response = await fetch('this_file_does_not_exist.txt');
|
|
return response.status;
|
|
}
|
|
|
|
</script>
|
|
</head>
|
|
<body>
|
|
</body>
|
|
</html>
|