Scope und Kontext
Hier lernst du alles rund um den Scope und den Kontext.
Scope Konzepte
3 Arten von Scopes
Global Scope
const me = 'Jonas';
const job = 'teacher';
const year = 1989;Function Scope
function calcAge(birthYear) {
const now = 2037;
const age = now - birthyear;
return age;
}
console.log(now);Block Scope
Last updated