Untitled
unknown
javascript
10 months ago
333 B
13
Indexable
<!DOCTYPE html>
<html lang="tr">
<head>
<meta charset="UTF-8">
<title>let Scope Hatası</title>
</head>
<body>
<h2>let Scope Hatası Örneği</h2>
<p>Konsolu aç (F12 → Console) sonucu gör.</p>
<script>
if (true) {
let x = 10;
}
console.log(x);
</script>
</body>
</html>
Editor is loading...
Leave a Comment