Libraries - Reading Assignment

  1. Why do we need libraries?
    So as not to waste time writing codes which other programmers have already written
1 Like
  1. We need libraries to use already existing code/solutions, so we can save our time.
1 Like

As programmers we use JS Libraries to re-use existing code, to save time as another programmer has already written.

1 Like

Questions:
. Libraries are needed so that existing code can be re-used and does not need to be remade so that content can be shared.

1 Like

Because it saves time and you can use allready tested js

1 Like

Why do we need libraries?
JavaScript libraries are collections of prewritten code that can be reused to perform common JavaScript functions.

1 Like

To reuse an already existing code instead of creating everything from scratch

1 Like
  1. Why do we need libraries?
    Libraries are files that contain the code, specifically the functions, someone has already implemented. To the library there is usually a documentation for better understanding and use of the functions.
1 Like

[quote=“ivan, post:1, topic:3113”]
Why do we need libraries?
We need libraries in order to use code that other programmers made and that can be useful for us.

1 Like

we need libraries to work as archive for code, so that a programmer saves time use already-existing code from another programmer.

1 Like
  1. We need libraries so we can reuse existing code when we can, so we don’t waste time writing code another program already wrote.
1 Like
  1. Why do we need libraries?
    A library is a JavaScript file that contains a bunch of functions, and those functions accomplish some useful task for your webpage.
1 Like
  1. Why do we need libraries?
    We need libraries so that we can re-use existing code when we can, so that we don’t waste our time writing code that another programmer has already written.
1 Like
  1. Why do we need libraries?
    In order to save time not writing code another programmer has already written.
1 Like
  1. To help programmers use existing code without creating their own.
1 Like

If you do not want to reinvent the wheel, or if you want to save time and use other programmers’ code and tools already developed to help build your application faster you can make use of libraries to do so.

1 Like

1. Why do we need libraries? Developers need libraries for the same reason they need functions; they are reusable. Rather than going through the same level of effort to achieve the same result, often times, others create libraries that already accomplish the task at hand. Libraries are very useful because they reduce the amount of work that would otherwise have to be done from scratch.

1 Like

Since a library is a collection of pre-made code, it saves programmers time that can be used in a wiser way. When someone has already done the work, there is no need to start from scratch.

1 Like
  1. We need libraries to retrieve code that is useful to what we are building. Libraries hold javascript files that contain many functions already written. We can use the libraries to save ourselves time of rewriting code previously created. A programmer can simply copy and paste the useful code into their own project.
1 Like

Libraries save coders time and allow other coders to re-use or build upon existing structures. Its beneficial for the space as it may lead to more complex pieces of code that would benefit the user and the wider coding community.

1 Like