set.values()

set.values()

Returns an array of the string values in this set. The order of the returned values is arbitrary. Can be used as a convenient way of computing the unique values for a set of strings. For example:

d3.set(["foo", "bar", "foo", "baz"]).values(); // "foo", "bar", "baz"
doc_D3_Js
2016-11-24 10:29:03
Comments
Leave a Comment

Please login to continue.