Git Product home page Git Product logo

hyf-javascript-2's People

Contributors

waelalnadeem avatar

Watchers

 avatar

Forkers

ghenowa

hyf-javascript-2's Issues

Indicating the attribute of object with loop, here not recommended

Instead of looping through all keys and doing checks per key (Line 38, 43)

for (data in book) {
if (data !== "title"){
var list = document.createElement("li")
list.classList.add("list")
} else {
var list = document.createElement("h2")
list.classList.add("head")
}
list.textContent = book[data]
booksDetails.appendChild(list)
}

You could use the attributes of the object directly, It is more consistent and faster, specially you are placing HTML elements per key, usually we are not sure of the order of the keys in an object.

Using getElementById is recommended

In lines

var body = document.getElementById("main")
let booksDetails = document.createElement("ul")
main.appendChild(booksDetails)

Variable body is declared but not used.
Then you used main you maybe meant to use body.
Luckily the variable name main matches the id of the element, so it works, but it is not recomended to use it, see https://www.w3.org/TR/html5/browsers.html#named-access-on-the-window-object

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.