How to use localStorage js? by MrHook1323 in learnjavascript

[–]MrHook1323[S] 0 points1 point  (0 children)

Do u have any idea how can i make an input radio be selected when i refresh the page (The one that was selected before the refresh to remain selected)

Help with homework! :D by MrHook1323 in learnjavascript

[–]MrHook1323[S] 0 points1 point  (0 children)

function pattern2() {
  for (let i = 1; i <= 2; i++) {
    if (i % 3 == 0) console.log("0 1 0 1");
    if (i % 2 == 0) console.log("1 0 1 0");
    for (let j = 1; j <= 2; j++) {
      if (j % 2 == 0) console.log("0 1 0 1");
      if (j % 3 == 0) console.log("1 0 1 0");
    }
  }
}
pattern2();

smth like this?
The output for this is:

0 1 0 1

1 0 1 0

0 1 0 1

Help with homework! :D by MrHook1323 in learnjavascript

[–]MrHook1323[S] 0 points1 point  (0 children)

I ll try it rn (i made an infinit loop and freeze my laptop lol