Skip to content

Var not being used in object.var

What should I be doing differently? At the end, it logs {name={rows=[0.0, 1.0, 2.0, …]}} instead of having an object for each name…? In the sheet there’s just a first name and last name on columns A and B, for around 80 rows. Answer Use the bracket syntax if you want to use dynamic names for…

Empty all channels with bulkDelete

I can’t seem to empty all my channels of their messages … Here is my code: Do you have any idea to solve my problem? Solution : Thank you Answer client doesn’t have a guild property. This returns undefined which then gives you that error. Perhaps you meant message.guild? message would be any Disco…

Clone and change onclick code of inner button

I have a div with id=”add-dependent” including 2 rows and a button (add dependent) inside of the div. When “add dependent” button is clicked, the first row would be cloned and insert before (add dependent) button. Actually I have another button outside of the div called (add applicant)…

Unable to post data on Jquery ajax

My code to post data to server is like this on alert I am getting the data I want to post to server, But when I inspect the call on Chrome,I can see that data is not getting posted (screenshot added below). What can be the reason for this behavior? Answer jQuery does not expect you to pass an array

Find upper and lower boundaries in array

I am trying to get the upper and lower boundaries of a numeric value in an array. For the above example, the outcome should be: If for example the value is a boundary, it would become the lower value in the outcome array. If it is the max boundary or above, it should become the max value. Example outcomes: I