Skip to content

sovpro/join-num

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Join Number

Join an array of single-digit integer numbers.

Build status for Node.js 4.x and newer

Join from an array

let join_num = joinNum ([1, 2, 3])

Join from an iterable value

let join_num = joinNum (
  Array.from (iterable_value)
)