const getConcatenation=nums=>{
   return nums.concat(nums)
}

const getConcatenation=nums=>{
	return [...nums,...nums]
}
Comments (0)