Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions content/questions/declaration-with-let/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
---
title: declaration with let keyword
tags:
- declaration
- let
order: 75
date: Fri Oct 02 2020 12:34:34 GMT+0530 (India Standard Time)
answers:
- 'apple //correct'
- 'orange'
- 'compilation error'
- 'undefined'
---

What is the output of the last console.log below?

```javascript
let fruit = 'apple';

{
let fruit = 'orange';
console.log(fruit);
}

console.log(fruit);
```

<!-- explanation -->

let respects block scopes. This means the two fruit variables are two different variables.