Computer Science, asked by gsupriya022, 1 day ago

Declare an array week and assign the value of the days to each index number in the order of occurrence and echo the result on the screen.​

Answers

Answered by guptarahulalwaysonl9
0

Answer:

$days = [

   'Sunday',

   'Monday',

   'Tuesday',

   'Wednesday',

   'Thursday',

   'Friday',

   'Saturday'

];

Explanation:

Similar questions