Skip to content

Instantly share code, notes, and snippets.

@WinDevInd
Created July 17, 2020 10:55
Show Gist options
  • Save WinDevInd/7d247c717ea9ef75ab02a001d191577d to your computer and use it in GitHub Desktop.
Save WinDevInd/7d247c717ea9ef75ab02a001d191577d to your computer and use it in GitHub Desktop.
Interview snippets
// 1. output for snippet
for (var i = 0; i < 10; i++) {
setTimeOut(() => {
console.log(i);
});
}
// box model - calcuclate total width
div {
width: 320px;
padding: 10px;
border: 5px solid gray;
margin: 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment