What is the memoization technique in JavaScript in Hindi
Memoization JavaScript में एक optimization technique है जो किसी function के result को cache में store करती है, ताकि future में अगर वही input values दोबारा मिले तोह function को वह calculation करने की ज़रुरत ना पड़े, और result सीधा cache से मिल जाये!. यह technique तब काफी helpful होती है जब function में complex या time-consuming calculations किया गया हों!.