Skip to content

Commit c05348b

Browse files
committed
Rename example
1 parent 4fe125e commit c05348b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

JavaScript/9-no-div.js renamed to JavaScript/9-nodiv.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ class CircularQueueNode {
55

66
constructor({ size }) {
77
this.size = size;
8-
this.buffer = new Array(size); //.fill(null);
8+
this.buffer = new Array(size).fill(null);
99
this.readIndex = 0;
1010
this.writeIndex = 0;
1111
this.next = null;

0 commit comments

Comments
 (0)