
Durgesh
@PentaHexagon
Followers
1K
Following
1K
Media
96
Statuses
2K
๐ Web Dev | Sharing insights on software careers, and web development. Passionate about empowering others!
Bengaluru, India
Joined May 2012
๐งต 1/8: REST vs GraphQL in Frontend System Design?. Itโs a common discussion point in system design interviews. Letโs break down how to approach this comparison, and understand when to choose one over the other! ๐. #SystemDesign #Frontend #InterviewPrep.
1
0
2
Good morning! ๐
A new week brings fresh opportunities to grow and learn. Letโs tackle our goals with energy and optimism! ๐ช #MondayMotivation #NewWeekNewGoals
0
0
0
8/8 ๐ In summary:.* Use localStorage for persistent data across sessions. * Use sessionStorage for data you want to expire when the session ends. Understand when to use each for an optimized user experience! ๐ก #WebDevelopment #CodingTips.
0
0
0
6/8 ๐ Size Limits: Both localStorage and sessionStorage allow up to ~5MB of data per origin, though this can vary slightly by browser. Donโt store huge chunks of data! #PerformanceMatters.
1
0
0
5/8 ๐ Security considerations: While both are accessible through JavaScript, neither should be used to store sensitive info (e.g., passwords) as data is stored in plain text. #FrontendSecurity.
1
0
0
4/8 โจ Key Differences:. localStorage: Persistent data, available across all tabs and windows for the same origin. sessionStorage: Data limited to the current tab/window and expires when itโs closed. #WebStorage.
1
0
0
3/8 ๐ sessionStorage is more temporary. It only keeps data for the duration of the page session. Once the user closes the tab or window, the data is gone. Great for session-specific data! #sessionStorage.
1
0
0
2/8 ๐ localStorage persists data even after the browser or tab is closed. Data stays until you explicitly delete it or the user clears their cache. Perfect for long-term storage! #JavaScript #localStorage.
1
0
0
๐งต #JavaScript Thread: Understanding localStorage vs sessionStorage โฌ๏ธ. 1/8 Both localStorage and sessionStorage are part of the Web Storage API, allowing developers to store key-value data in the browser. But when to use which? Letโs break it down! ๐ #WebDev #Frontend.
2
0
3
Getting a new software update be like: โImproved performance and minor bug fixesโโฆ Translation: Good luck! ๐
๐ป . Ready for iOS update ๐????. #DevHumor #SoftwareLife #iOS.
0
0
2
Did you know ?? (Nullish Coalescing) is the perfect sidekick for Optional Chaining (?.)? ๐ฆธโโ๏ธ It ensures you handle null or undefined values gracefully. No more messy fallbacks! ๐ #JavaScript #CleanCode #WebDev.
0
0
2
Did you know about Optional Chaining (?.) in JavaScript? ๐ฏ It lets you safely access deeply nested properties without throwing errors. No more Cannot read property of undefined! Great for cleaner, safer code. ๐ #JavaScript #ES6 #CleanCode.
0
0
2