Skip to content

Commit af0fe3a

Browse files
committed
replaced var to let
1 parent 39fff1b commit af0fe3a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

chapter04/01-Queue.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
function Queue() {
22

3-
var items = [];
3+
let items = [];
44

55
this.enqueue = function(element){
66
items.push(element);

0 commit comments

Comments
 (0)