How I can pass argument to reqestAnimationFrame ? let's say I have this code,how I can pass argument to requestAnimationFrame
var element = document.getElementById("SomeElementIWantToAnimate");
element.style.position = 'absolute';
function step(number) {
element.style.left = ""+Math.min(progress/10, 200) + "px";
window.requestAnimationFrame(step);
}
window.requestAnimationFrame(step); //how I can pass a "number" argument here