screen_rotation
Copied to Clipboard
<!DOCTYPE html> <html> <head> <meta charset="UTF-8" /> <script src="https://cdnjs.cloudflare.com/ajax/libs/react/17.0.2/umd/react.development.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/react-dom/17.0.2/umd/react-dom.development.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/babel-standalone/6.26.0/babel.min.js"></script> </head> <body> <div id="app"></div> <script type="text/babel"> const { useState } = React const getMondaysBetweenDates = (startDate, endDate) => { const mondays = []; const currentDate = new Date(startDate); while (currentDate <= endDate) { if (currentDate.getDay() === 1) { // Monday has a day index of 1 mondays.push(new Date(currentDate)); } currentDate.setDate(currentDate.getDate() + 1); // Move to the next day } return mondays; }; function App() { const [orientation, setOrientation] = useState(''); const startDate = new Date('2023-01-01'); // Replace with your desired start date const endDate = new Date('2023-1-31'); // Replace with your desired end date const mondays = getMondaysBetweenDates(startDate, endDate); return ( <div className='container'> <h3>React Js Get All Mondays Between two dates</h3> <p>Mondays between {startDate.toDateString()} and {endDate.toDateString()}</p> <ul> {mondays.map((monday, index) => ( <li key={index}>{monday.toDateString()}</li> ))} </ul> </div> ); } ReactDOM.render(<App />, document.getElementById('app')); </script> <style> .container { text-align: center; box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.12), 0 2px 4px 0 rgba(0, 0, 0, 0.24); width: 600px; margin: 0 auto; padding: 20px; } h3 { color: #333; font-size: 24px; margin-bottom: 10px; } p { color: #666; font-size: 16px; margin-bottom: 20px; } ul { list-style: none; padding: 0; margin: 0; } li { color: #444; font-size: 14px; margin-bottom: 5px; } </style> </body> </html>