Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions 100Questions/100_JS_Que
Original file line number Diff line number Diff line change
Expand Up @@ -1734,3 +1734,5 @@ function MCQ24() {
*/
}
// MCQ24();

June 2024
1 change: 1 addition & 0 deletions Interview-questions-answers
Original file line number Diff line number Diff line change
Expand Up @@ -260,3 +260,4 @@ const apiUrl = process.env.REACT_APP_API_URL;
const apiKey = process.env.REACT_APP_API_KEY;

Remember, the .env file should not be used to store sensitive information like secrets or passwords, as these files are generally included in the version control system and can be accessed by anyone with access to the repository.

1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Javascript interview question 2024
2 changes: 2 additions & 0 deletions js codes.docx
Original file line number Diff line number Diff line change
Expand Up @@ -3858,6 +3858,8 @@ function fibonacciWithMemoization(n, memo = {}) {
const result = fibonacciWithMemoization(5);
console.log(result); // Output: 5

>>>>>>>>>>>>>> 2024