Skip to content

Instantly share code, notes, and snippets.

@langolf
Last active March 22, 2024 13:12
Show Gist options
  • Save langolf/e669fef5f992e1114fd4a51baf30156a to your computer and use it in GitHub Desktop.
Save langolf/e669fef5f992e1114fd4a51baf30156a to your computer and use it in GitHub Desktop.
gjgjg
{
"scripts": [],
"styles": []
}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
</head>
<body>
<h1>header</h1>
<script src="./script.js"></script>
</body>
</html>
let a = [0, 1, 3, 2];
function insertArr(arr) {
let result = Array(5);
let temp = null;
for (let i = 1; i < arr.length - 1; i++) {
temp = arr[i + 1];
arr[i + 1] = arr[i];
}
return arr;
}
insertArr(a); //=
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment