Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Split down the docs #118

Open
tomek-he-him opened this issue Jun 15, 2015 · 2 comments
Open

Split down the docs #118

tomek-he-him opened this issue Jun 15, 2015 · 2 comments
Milestone

Comments

@tomek-he-him
Copy link
Member

#106 (comment)

I’m thinking of something like:


(…)

Working with arrays

(…)

concat(values, oldArray) → newArray

Same as oldArray.concat(newArray). Returns a copy of oldArray with the items of the array values appended at the end. [see on MDN »]

let alpha = ['a', 'b', 'c'];
let numeric = [1, 2, 3];

concat(numeric, alpha);  // => ['a', 'b', 'c', 1, 2, 3]
SpecSource: (values, oldArray) => oldArray.concat(values);

(…)

@stoeffel
Copy link
Contributor

👍

@tomek-he-him
Copy link
Member Author

By the way, doxie is growing :) The engine and a small set of plugins should be ready by the end of the week :)

@tomek-he-him tomek-he-him modified the milestone: 1.0.0 Jun 17, 2015
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants