@@ -11,7 +11,8 @@ The `BasicSet` in SetJS supports values of type `Number` or `String`.
...
@@ -11,7 +11,8 @@ The `BasicSet` in SetJS supports values of type `Number` or `String`.
```javascript
```javascript
newBasicSet([initialData]);
newBasicSet([initialData]);
```
```
`initialData` can be a value, several values, an array of values, or a mix of values and arrays of values. If no arguments are provided an empty `BasicSet` will be returned. For example, the following would return a `BasicSet` containing the values `{1,'2',2.5,'c','d',5.0}`.
The `initialData` argument(s) can be a value, several values, an array of values, or a mix of values and arrays of values. If no arguments are provided an empty `BasicSet` will be returned. For example, the following would return a `BasicSet` containing the values `{1,'2',2.5,'c','d',5.0}`.