Skip to main content

getDay() get day of week

  • August 23, 2020
  • 1 reply
  • 2 views

Forum|alt.badge.img+12

I’m not great with Scripting, but I can struggle my way through sometimes.

I’m trying to get the day of the week from a Date field type.

Any suggestions on how to accomplish this?

Thanks!

1 reply

Kamille_Parks11
Forum|alt.badge.img+25

https://www.w3schools.com/jsref/tryit.asp?filename=tryjsref_date_weekday

^ Typical example of how to use .getDay() in javascript.

So you would be doing something like this:

const dateValue = new Date(record.getCellValue("Date field"))
const days = ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"]
const dayOfWeek = days[dateValue.getDay()]

Reply