impactbyte-haku / projects

🌐 Projects
https://gitlab.com/impactbyte/learn/course-fullstackweb
9 stars 1 forks source link

Project DOM #23

Open mhaidarhanif opened 5 years ago

mhaidarhanif commented 5 years ago

Submit here.

mhaidarhanif commented 5 years ago
<!DOCTYPE html>
<html lang="en">
  <head>
    <title>Project JavaScript</title>

    <link rel="stylesheet" href="index.css" />
  </head>
  <body>
    <ul>
      <li><span>Sleeping</span></li>
      <li>Coding</li>
      <li>Eating</li>
      <li>Mancing</li>
    </ul>

    <script src="index.js"></script>
  </body>
</html>
const todosElements = document.getElementsByTagName('li')

const todosList = Array.from(todosElements)

const todos = todosList.map(element => {
  return element.innerText
})

console.log(todos)
rizariza69 commented 5 years ago

https://github.com/rizariza69/project-javascript-body-mass-index https://riza-project-body-mass-index.netlify.com/

dickymr commented 5 years ago

https://dickymr-body-mass-index.netlify.com/ https://github.com/dickymr/project-body-mass-index

BintangSaputra commented 5 years ago

https://calculatorcalorie.netlify.com/ https://github.com/BintangSaputra/javascript-bmr-project

yevgenysiregar commented 5 years ago