diff options
| author | Michael Ball <cycomachead@gmail.com> | 2014-07-26 17:14:34 -0700 |
|---|---|---|
| committer | Michael Ball <cycomachead@gmail.com> | 2014-07-26 17:14:34 -0700 |
| commit | 91513795468d30630bb132c1e479a26b2df9b1b2 (patch) | |
| tree | 6025edcbacc985dd1e4be6c6aa4bee51b6e9fdea /lists.js | |
| parent | f72c133a494be537ad51f784d021ba6e3c313bb7 (diff) | |
| download | snap-byow-91513795468d30630bb132c1e479a26b2df9b1b2.tar.gz snap-byow-91513795468d30630bb132c1e479a26b2df9b1b2.zip | |
List.toString will show contents of the list
Diffstat (limited to 'lists.js')
| -rw-r--r-- | lists.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -112,7 +112,7 @@ function List(array) { } List.prototype.toString = function () { - return 'a List [' + this.asArray + ']'; + return 'a List [' + this.asArray() + ']'; }; // List updating: |
