Advertisement
Guest User

Untitled

a guest
May 23rd, 2019
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. updatePopulation () {
  2. for (var column = 0; column < this.numberOfColumns; column ++) {
  3. for (var row = 0; row < this.numberOfRows; row++) {
  4. this.cells[column][row].liveOrDie();
  5. }
  6. }
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement