Why do we need libraries?
Because we can take the code from an other programmer and build it in our own project.
The use of libraries make it easier and save us a lot of time when we are developing our own project.
To allow us to reuse code and by that save time and effort.
By doing that we will less likely to âburn outâ while doing our project.
A JavaScript library is a file that contains many functions written by other programmers.
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.
Libraries help programmers not to waste their time to write a code which has been already written by someone else who decided to share it with the world.
Libraries enable developers to build on code that someone else has already written. Much faster turnaround as opposed to building everything from scratch.
We need libraries to avoid having to rewrite parts of the code. By accessing the library you have access to other peopleâs code and can use it to more efficiently create your project.
- Libraries make creating a complex program quicker and easier. Using libraries you can quickly implement functions into your program without having to create those functions from scratch.
To be able to reuse and share code between different projects and developers
- We donât need to reinvent the wheel, same thing with code, liberaries are saved code. we can go there and find out about new things/
Libraries are a source of code that can be accessed and built upon by developers everywhere, and are therefore a valuable source from which to learn and advance further the development of webpages and applications.
We need library to create / access useful functions to accomplish some useful task for your webpage.
To store functions. âA library is a Java Script file that contains a bunch of functionsâ
- Why do we need libraries?
To save time, some developers create functions and share them with the world, so other developers can just take those functions from the library and modify them a bit on their needs.
to save time. So, most code is already written - The deep dish is already invented. So instead of having to write it all over again, we can take a code and via. link to our script.
1.We use and need libraries to help us the programmer time, if someone else has already written the code for something we want to implement, then its easier to use pre existing code instead of wasting time âre inventing the wheelâ so to speak.
- We can save time by using libraries. We will re-use the existing code and that spare time we can use it to improve the code that we are working to.
We need library so we donât need to re-invent the world every time we code and can reuse functionalities already developed and tested by somebody else.
Why do we need libraries?
re-use existing code
- 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.
Libraries allow us to build on top of others peoples work. We can re-use their functions and code to help us develop more effectively. Its a time saving and easy for implementing