Lets say I have a
<!DOCTYPE html>
<html>
<head>
<title>Eucalyptus</title>
</head>
<body style="background-color: #FFE11A">
<div id="gore" style="background-color: #BEDB39">gore
<button id="prvi" style="width: 50px; height: 50px; border-radius:10px;">Kurac</button>
<div id="drugi">Drekec</div>
</div>
<div id="dolje">dolsdasdje</div>
<script>
var AAA1 = 1;
(function(a, b) {
var AAA3 = a + b;
AAA2 = a * b;
})(10, 10);
</script>
</body>
</html>
I can obviously see window.AAA1
and window.AAA2
but where is AAA3?
Is it possible to hook it somehow and edit it on the fly from the console or is it just jumbled somewhere in machine code and not accessible anymore?