List.toString will show contents of the list

pull/3/merge
Michael Ball 2014-07-26 17:14:34 -07:00
rodzic f72c133a49
commit 9151379546
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -112,7 +112,7 @@ function List(array) {
}
List.prototype.toString = function () {
return 'a List [' + this.asArray + ']';
return 'a List [' + this.asArray() + ']';
};
// List updating: