Skip to content

Commit 6250275

Browse files
committed
Fix const in multigraph.htm
1 parent 0a5ec15 commit 6250275

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

demo/multigraph.htm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
function updateGUI() {
2323
// this is just generation of graph
2424
const npoints = 20;
25-
const xpts = [], ypts = [];
25+
let xpts = [], ypts = [];
2626
for (let i = 0; i < npoints; i++) {
2727
if (cnt % 2 === 1) {
2828
xpts.push(i);

0 commit comments

Comments
 (0)