--- title: Generator slug: Web/JavaScript/Reference/Global_Objects/Generator tags: - ECMAScript 2015 - Generator - JavaScript - Legacy Generator - Legacy Iterator - Reference translation_of: Web/JavaScript/Reference/Global_Objects/Generator browser-compat: javascript.builtins.Generator ---
Generator
객체는 {{jsxref("Statements/function*", "generator function", "", 1)}} 으로부터 반환된 값이며 이터러블 프로토콜과 이터레이터 프로토콜을 준수합니다.
function* gen() { yield 1; yield 2; yield 3; } var g = gen(); // "Generator { }"
function* idMaker(){ var index = 0; while(true) yield index++; } var gen = idMaker(); // "Generator { }" console.log(gen.next().value); // 0 console.log(gen.next().value); // 1 console.log(gen.next().value); // 2 // ...
Firefox (SpiderMonkey)는 JavaScript 1.7에서 이전 버전의 생성기도 구현 했습니다.이 버전에서는 함수 선언에서 별표 (*)가 필요하지 않습니다 (함수 본문에서 yield
키워드 만 사용). 그러나 오래된 생성기는 더 이상 사용되지 않습니다. 사용하지 마십시오. 곧 제거 될 것입니다 ({{bug(1083482)}}).
Generator.prototype.next()
{{non-standard_inline}}next()
에 해당합니다.Generator.prototype.close()
{{non-standard_inline}}next()가 호출되면
{{jsxref("StopIteration")}} 에러를 던집니다. ES2015 Generator 객체의 return()
에 해당합니다.Generator.prototype.send()
{{non-standard_inline}}send(x)
는 ES2015 Generator 객체의 next(x)에 해당합니다
.Generator.
prototype.
throw()
{{non-standard_inline}}throw()
에 해당합니다.function* fibonacci() { var a = yield 1; yield a * 2; } var it = fibonacci(); console.log(it); // "Generator { }" console.log(it.next()); // 1 console.log(it.send(10)); // 20 console.log(it.close()); // undefined console.log(it.next()); // throws StopIteration (as the generator is now closed)
{{Specifications}}
{{Compat}}