Fuzz Productions Interview Question

On a whiteboard. Given a number as an array(ex: 143 as [1,4,3]). How would I write a function that would increment it.

Interview Answer

Anonymous

Jun 26, 2017

(function () { var a = [1,4,3], b = ""; for(var i=0;i

1