"# Step 84
Next, you’ll create an object to represent the first frame of your animation. Your object should have three properties or keys: inputVal
, marginTop
, and addElDelay
.
inputVal
will represent the value of the input each time your recursive function runs. marginTop
will be the top margin for DOM elements you’ll add to the page. And addElDelay
will be the delay between adding DOM elements to the page.
Add an object to animationData
with an inputVal
property set to 5
, a marginTop
property set to 300
, and an addElDelay
property set to 1000
."
I am stuck. Not sure how to write this one out. Below is my code;
inputVal: 5,
marginTop: 300,
addElDelay: 1000,
animationData.length: 1