Skip to content

Instantly share code, notes, and snippets.

@rssh
Created July 7, 2012 09:04
Show Gist options
  • Save rssh/3065562 to your computer and use it in GitHub Desktop.
Save rssh/3065562 to your computer and use it in GitHub Desktop.
dou - Иллюстрация к колонке от 2012-07-07 №5
function(students) {
var retval = [ ];
for(var s in students) {
if (students.hasOwnProperty(s)) {
if (students[s].course == 4) {
retval.add(students[s].name)
}
}
}
return retval;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment