Libraries - Reading Assignment

  1. Why do we need libraries?
    To save time. Most coding has already been done.
1 Like

Why do we need libraries?

We don’t actually need libraries but they are a useful tool to have in the tool box because they can save time and effort when it comes to coding. Instead of creating a certain type of functionality from scratch it may be easier to use that same functionality which some one else has already created and put up as opensource for the world to use freely. We can also build up our own library of re-usable functions and make them available to others to use if they wish.

1 Like
  1. To make our jobs as web developers more comprehensible and less difficult. Libraries are files that contains many functions that are useful when operating a web page. As a programmer and web developer you want to implement code that others have already written instead of wasting time writing new code.
1 Like
  1. We need libraries on order to re-use code, this helps us save time by not having to write code someone has already written
1 Like

Two reasons: to save us time, and, to continue to learn new things.

1 Like

Helps us to build on top of code. Because we are able to re-use existing code. Effectively saving tons of time.

1 Like

We need libraries in order to save time trying to create code which is already functional tried and tested leaving more time for creating your own bespoke program.

1 Like
  1. Libraries allows us to re-use existing code being this a good and more efficient programming practice. Every time we re-use code we are not wasting our time writing code that another programmer has already written.
1 Like

JS library allows us to use codes that another developer has already done, so that we don’t waste our time writing codes that another programmer has already written.

1 Like

Libraries help save time and keep code organized and efficient for both programmer and user.

1 Like
  1. The library contains a collection of functions that we can use to accomplish, build useful tasks in the webpage.
1 Like

Why do we need libraries?

To have more time to geek out on blockchain by reusing code that has already been written by someone else.

1 Like
  1. Why do we need libraries?

There are many common problems in programming that appear often. It doesn’t make sense to rewrite them from scratch every time. There is probably already a library that someone else has created, that contains solutions to many of the tasks that we are trying to solve.

1 Like

Libraries are used so that we dont have to write a lot of code if someone already created what we need.

1 Like

Why do we need libraries?
Libraries helps to diminish redundancy in code design. There is no need to re-invent the wheel.

1 Like

Why do we need libraries?
They are helpful in save time and memory because you do not have to recreate the functionality you want, thus allowing less memory to be used for your program.

1 Like

JavaScript is not consistent across browsers. You don’t want to waste time creating abstractions for all the discrepancies between browsers. Let’s say you are starting three different projects at the same time, you’ll probably reuse the abstractions you have written, and your projects will probably have very similar file architecture and build process. The problem is that you don’t want to repeat this manual bootstrapping procedure each time you start a new project. Enter frameworks.

Frameworks help you by minimizing the effort of initialization, testing and deployment of your project, allowing you to focus on what’s really important: your application. A good framework should be easy-to-setup, and in my opinion, flexible in a “pay for only what you eat” fashion.

1 Like
  1. We use Libraries so we dont have to spend so much time re writing code that has already been done.
1 Like

to save time on writing code and to find answers to your idea.

1 Like

Excellent answer sir! really well documented! keep it like that please! :muscle:

Carlos Z.

1 Like