- Why do we need libraries?
You can use libraries to save time because you can reuse code that has been written before.
We need library so one do not have to re-invent the wheels. Someones stored in a library his findings making life of other devs much easier. Letās use it and put our energy on something more useful
1.Because, there is no need to re-create the wheelā¦as programmers, we should re-use existing code when we can, so that we donāt waste our time writing code that another programmer has already written.
- We need libraries so we donāt have to code everything from scratch
We need libraries so that we dont have to rewrite code that others have already created
1 - Libraries allow for greater efficiency when programming as it allows us to re-use pieces of code (where appropriate) that another programmer has written and made available for other programmers to use. Libraries contain functions which may be useful for whatever you are coding, and saves you a lot of time also.
We need libraries so that we do not have to re-write commonly used functions on our own. Instead of āre-inventing the wheelā we can use open libraries to embed the functionality we are looking for. This saves time, prevents many mistakes, and in a way gives a familiar look to many functions we see across many pages.
- We need libraries so we are not having to constantly re-create code all the time. Once we solve for a problem and create a function we never have to re-write the same function again. It saves SOOOOOO much time and headache so developers can tackle real creative issues for their programs.
A library is a collection of re-usable routines which can be included into your application. Without these a programmer would simply re-write there own code each time. Itās a way to share code in a modular fashion and benefit from what others have created.
- Why do we need libraries?
As programmers, we should re-use existing code when we can, so that we donāt waste our time writing code that another programmer has already written.
In JavaScript, the way we do that is by using a library . A library is a JavaScript file that contains a bunch of functions, and those functions accomplish some useful task for your webpage.
- To save time building code but also so that we can create more functionality by building on past code.
Why do we need libraries? (Much the same as what javascript learned from the opensource movement in the 1980s-present). And we use libraries in programming languages. So this concept is useful for other programming alsoā¦
- Simplifies local code. [clean code, reliable, consistent across sites/devs, efficient, etcā¦]
- Saves a lot of time for a lot of people.
- Normally well tested and examined by many.
- Security is often well examined.
- Code is often improved through many people suggesting improvements.
- Performance is commonly optimizedā¦
- Helps encourage creativity, innovation, sharing, and forks trying new ideas/features.
- Often promotes healthy competition (and sometimes not so healthy competition) but ideas are explored.
- And many more reasonsā¦
- Why do we need libraries?
We use libraries to build our JS project by reusing the JavaScript features and functions that others have tested and proven the codes. Like Lego building blocks, libraries help us to save project time and using special functionality and features to build a more robust application.
- Why do we need libraries?
To avoid remaking the wheel and save a ton of time.
- Why do we need libraries?
We need libraries so that we donāt waste our time writing code that another programmer has already written. A library is a JavaScript file that contains a bunch of functions, and those functions accomplish some useful task for your webpage.
1. Why do we need libraries? So we donāt need to reinvent the wheel and create a whole lot of code that has already been written, repetitively. Especially for the visual side and set up / functionality of websites. We can then concentrate on the IP and uniqueness of our work that we wish to put forward and display.
- Why do we need libraries?
We use libraries to short our time waste on writting a code that is already written ready for reuse
We need libraries to save time in programming. Either by not needing to write every tool from scratch, or by making code more easy to read because other developers used the same tools.
Because there no need to reinvent the wheel. We can use the knowledge out there as building blocks for our own projects.
We need libraries so we can reuse code that has already been written to save time and use it to build upon to keep innovating. Also, reusing code that has been time tested reduces the risk of bugs.