Skip to content

How to push 1 D array to a column

I’m trying to push 1D array to a column but Im keep getting that error “Exception: The parameters (number[]) don’t match the method signature for SpreadsheetApp.Range.setValues.” which what I understood is that I cant use setValues for 1D array, it has to be 2D array or more. Here is m…

CSS welcome animation overflow

I have this snippet. The welcome div is for a welcome animation on the page that lasts 3.5 seconds and then disappears. The problem is that the overflow is visible, being able to see the elements that I would like to be visible only after the welcome animation is finished. As a solution to this problem, I tho…

create custom nested output from json using javascript

I am trying to save data in json object by using map function but the problem is I can save data by using needed_key:value.arrayData.key needed_value:value.arrayData.value if all the needed_key and needed_value are same I can use above code but here problem is key name is same but the needed_value get change …