Skip to content

Instantly share code, notes, and snippets.

View shivam1283's full-sized avatar
🎯
Focusing

Shivam Yadav shivam1283

🎯
Focusing
View GitHub Profile
@shivam1283
shivam1283 / leetcodeQuestions.md
Created May 20, 2021 20:31
Leetcode important questions #interview #coding
@shivam1283
shivam1283 / 1PromisesAndCallback.md
Last active December 21, 2022 08:31
JS concepts

Callback

function loadScript(src) {
  // creates a <script> tag and append it to the page
  // this causes the script with given src to start loading and run when complete
  let script = document.createElement('script');
  script.src = src;
  document.head.append(script);
}
@shivam1283
shivam1283 / excercises.md
Last active May 18, 2021 19:12
Learning excercises #react

Exercises

  • Infinite scroll and pagenation Link