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.production.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/react-dom/17.0.2/umd/react-dom.production.min.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 function App() { const data = [ { name: 'John', age: 25, gender: 'male' }, { name: 'Jane', age: 30, gender: 'female' }, { name: 'Bob', age: 28, gender: 'male' }, { name: 'Alice', age: 22, gender: 'female' } ]; // Define your filter conditions const filteredData = data.filter(item => { // Example conditions: age greater than 25 and gender is male return item.age > 24 && item.gender === 'male'; }); // Render your filtered data return ( <div className='container'> <h2>React Js Filtering array of objects by multiple conditions</h2> <ul> {filteredData.map((item, index) => ( <li key={index}> {item.name} - Age: {item.age}, Gender: {item.gender} </li> ))} </ul> </div> ); } ReactDOM.render(<App />, document.getElementById("app")); </script> <style> * { box-sizing: border-box; } body { font-family: Arial, sans-serif; margin: 0; padding: 0; } .container { text-align: center; padding: 20px; box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.12), 0 2px 4px 0 rgba(0, 0, 0, 0.24); margin: 0 auto; width: 600px } h2 { color: #333; font-size: 24px; margin-bottom: 10px; } ul { list-style: none; padding: 0; } li { margin-bottom: 5px; } li::before { content: '•'; color: #999; display: inline-block; width: 1em; margin-left: -1em; } li span { font-weight: bold; } li .age { color: #666; } li .gender { color: #888; } </style> </body> </html>