Description
On the page of the Padded function, the example is incorrect. As shown below, the correct call of padded should be let output = Padded(-6, 2, array); instead of let output = Padded(-6, array, 2);
let array = [10, 11, 12];
// It should be "let output = Padded(-6, 2, array);"
let output = Padded(-6, array, 2);
// It should be "let output = Padded(6, 2, array);"
let output = Padded(6, array, 2);