Libraries - Reading Assignment

We need libraries to save us from reinventing the wheel. They allow us to reuse code and thus save us time.

1 Like
  1. We use libraries so we don’t waste time and write the same code over and over.
1 Like

We should try to use code that has already been battle tested, use that code and try to optimism it.

1 Like
  1. Why do we need libraries?

So that we wouldn’t have to reinvent the wheel by coming up with functionality that has already been built by other developers who are often happy to share their code.

1 Like
  1. Libraries contain functions that another programmer made already and decided to share. It saves us from reinventing the wheel if want to use that functionality in our own programs.
2 Likes

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
By using libraries it facilitates and also saves time for the programmer by
re-using others code.

2 Likes

As programmers, we should re-use existing code whenever we can, so that we don’t waste our time writing code that another programmer has already written. In other words, for improved efficiency.

2 Likes
  1. Libraries allow us to save time by reusing code that has been previously written to execute a function.
2 Likes
  1. Libraries are extremely useful as they allow you to quickly implement functionality by reusing existing code so you can spend more time on other parts of your project. Many libraries are the result of years of development by hundreds of contributors so they are tweaked to work with a host of browser types and many bugs and issues will have been resolved.
4 Likes

Programmers use libraries to re-use existing code when they can, so that they don’t waste their time writing code that another programmer has already written.

2 Likes

Libraries in coding, help us developers save time by borrowing generally needed code from the library.

2 Likes
  1. Why do we need libraries?
    A: to 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

We use libraries to save time and energy so as to not re-invent code that is has already been worked out. Programmers do not need to create everything from scratch. That would be time-consuming and unnecessary since other programmers have performed that same code many times over.

2 Likes

Why to write long lines of code when similar functionalities can be achieved by using already written and vested code by Other developers. So, using Libraries is a way to shorten your hard work and achieve better Time and Code efficiencies

3 Likes
  1. Why do we need libraries?

It allow us to build on top of other’s work, re-use their functions and code and not have to redo all your work from scratch.

2 Likes

Programmers are using libraries to re-use existing code so that they don’t have to write all the code by themselves which would be time-consuming. Thank God we have libraries!

3 Likes
  1. Why do we need libraries?
    To re-use existing code that other programmers have created to avoid wasting time writing our own code from scratch.
3 Likes

Why do we need libraries?
To have more consistent code and be able to focus more on project specific code.

3 Likes

We need libraries so we don’t have to reinvent the wheel over and over.
Reduce development time and costs.
Increased testing, reduced bugs.
Evolves development standards and interoperability.

1 Like

We need libraries to use code that other programmers have already written in order to save time and get to the unique functionality of our code more quickly.

1 Like