Hi guys,
How do I add two single digit numbers from an array into a single double digit or more number? For example, array 0 = 5, array 1 = 2, and I want to get the value 52.
I thought the code below would work, but it didn't.
(array.at(0)) & (array.at(1))
I would think it is something close to this, and I am missing something in the syntax.