Aliendreamer

javascript const fun

Dec 24th, 2019
247
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. const testConst = () =>{
  2.    const x =[2]
  3.    console.log("i changed the const")
  4.    x.push(3);
  5.    console.log("it changed")
  6.    console.log(x);
  7. }
  8. testConst()
Advertisement
Add Comment
Please, Sign In to add comment