Completed 1.12 (anecdotes step1)

This commit is contained in:
2021-08-26 20:55:18 +07:00
parent 5aaa738334
commit 11b911dd58
33 changed files with 38630 additions and 239 deletions
+30
View File
@@ -0,0 +1,30 @@
import React, { useState } from 'react'
const App = () => {
const anecdotes = [
'If it hurts, do it more often',
'Adding manpower to a late software project makes it later!',
'The first 90 percent of the code accounts for the first 90 percent of the development time...The remaining 10 percent of the code accounts for the other 90 percent of the development time.',
'Any fool can write code that a computer can understand. Good programmers write code that humans can understand.',
'Premature optimization is the root of all evil.',
'Debugging is twice as hard as writing the code in the first place. Therefore, if you write the code as cleverly as possible, you are, by definition, not smart enough to debug it.',
'Programming without an extremely heavy use of console.log is same as if a doctor would refuse to use x-rays or blood tests when diagnosing patients'
]
const [selected, setSelected] = useState(0)
const setRandom = () => {
const min = 0
const max = anecdotes.length-1
const random = Math.floor(Math.random() * (max-min+1)) + min
console.log(random)
setSelected(random)
}
return (
<div>
<p>{anecdotes[selected]}</p>
<button onClick={setRandom}>Next Anecdote</button>
</div>
)
}
export default App