what practice is better using pure javascript & css is or using frameworks? [closed]

Depends what you want to do.

Most of the times, what you want to build is already built by someone else so there is no need (and mostly, no time) to re-invent the wheel. Customers want results as soon as possible, so frameworks are good for prototyping.

But to get there, you should first try building things from scratch, so for learning you go with pure CSS and vanilla JS, and then build your knowledge of frameworks.

Leave a Comment