GlobalLogic interview question

what is a generator in javascript?

Interview Answer

Anonymous

Oct 28, 2020

Regular functions return only one, single value (or nothing). Generators can return (“yield”) multiple values, one after another, on-demand. They work great with iterables, allowing to create data streams with ease.