-3
how do I create a js that displays the contents of the array according to the days of the week, type I have the following array:
{
"days": {
"monday": [
{"message": "Olá"}
],
"tuesday": [
{"message": "Seja bem vindo"}
]
}
}
I want to know if with js it is possible to display the content "Monday" on Monday and "Tuesday" on Tuesday and so on. It is possible to do this?
You’ve helped me so much, thank you!
– Thiago