UNPKG
theorem.js
Version:
latest (1.2.0)
1.2.0
1.1.0
1.0.1
1.0.0
0.1.0
0.0.2
0.0.1
A Math library for computation in JavaScript
github.com/arguiot/TheoremJS
arguiot/TheoremJS
theorem.js
/
src
/
includes
/
functions
/
array
/
reverse.js
4 lines
(3 loc)
•
100 B
JavaScript
View Raw
1
2
3
4
reverse
(array) { return array
.slice
(
0
)
.reverse
()
// duplicate and reverse to duplicate the array
}