Created
January 13, 2020 14:44
-
-
Save cesarkohl/a8f61d3cb53c05340b5ca57b17698167 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function Set () { | |
| var array = []; | |
| this.add = function (value) { | |
| if (array.indexOf (value) === -1) { | |
| array.push (value); | |
| } | |
| }, | |
| this.showValues = function () { | |
| console.log (array); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment