Libraries - Reading Assignment

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.

1 Like

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.

1 Like

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.

2 Likes

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.

2 Likes

Libraries enable developers to build on code that someone else has already written. Much faster turnaround as opposed to building everything from scratch.

1 Like

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.

2 Likes
  1. 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.
1 Like

To be able to reuse and share code between different projects and developers

1 Like
  1. 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/
1 Like

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.

2 Likes

We need library to create / access useful functions to accomplish some useful task for your webpage.

:thinking:

2 Likes

To store functions. “A library is a Java Script file that contains a bunch of functions”

1 Like
  1. 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.
1 Like

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 Like

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.

1 Like
  1. 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.
1 Like

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.

1 Like

Why do we need libraries?
re-use existing code

1 Like
  1. 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.

1 Like

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

1 Like