var peanuts = 'peanuts';
function allergies() {
return peanuts;
}
allergies();
var newYorkBoroughs = ['Brooklyn', 'The Bronx', 'Manhattan', 'Queens', 'Staten Island'];
function manhattan() {
var manhattanLS = 'manhattan';
function soHo() {
var soHoLS = 'soHo';
function chelsea() {
var chelseaLS = 'chelsea';
console.log(manhattan, soHoLS, chelseaLS, newYorkBoroughs);
}
chelsea();
}
soHo();
}
manhattan();
var newYorkBoroughs = ['Brooklyn', 'The Bronx', 'Manhattan', 'Queens', 'Staten Island'];
function manhattan() {
var manhattanLS = 'manhattan';
function soHo() {
var soHoLS = 'soHo';
}
soHo();
}
function chelsea() {
var chelseaLS = 'chelsea';
console.log(chelseaLS, newYorkBoroughs);
}
chelsea();
manhattan();
var newYorkBoroughs = ['Brooklyn', 'The Bronx', 'Manhattan', 'Queens', 'Staten Island'];
function manhattan() {
var manhattanLS = 'manhattan';
return brooklyn;
}
manhattan();