Discuss / JavaScript / YC交作业

YC交作业

Topic source

function* next_id() {
var n = 1; var max = 100; while(n<max){ yield n; n++; } return; }


  • 1

Reply