#Javascript
Brain Dump·Jan 16, 2025
Encode and Decode Strings | String Manipulation
decode(str) { const result = [] let i = 0 while (i < str.length) { const delimeter = str.indexOf('#', i) const length = str.substring(i, delimeter) const
1 min read·General
Prashant Basnet·Jan 15, 2025
For vs While loop | When to use what?
Whenever we are updating the iteration by only 1 count regardless we use for.If we want to update out iteration based certain count depending on the condition.
2 min read·General