Best of Python — August 2021
- 1
- 2
DEV·5y
Removing duplicate elements in Javascript: In a simple way! 😵
With SET we can remove duplicate elements from an array in a very easy way. A Set object is also iterable, making it easily convertible to an array using the spread (...) operator. The last few weeks I have been learning Python. I'm following this roadmap: 30-days-of-python Series' Articles by @arindam Dawn. I recommend it ! I love it !
- 3
Quick Code·5y
Node.js Vs JAVA Vs Python- How to Choose the Best Backend Tech Stack?
Python, Java, and Node.js are popular backend choices. They empower globally successful brands like Google, Wikipedia, Netflix, LinkedIn, even NASA. All three enjoy a prominent market status, millions of developers, and billions worth of project development. But, there is no absolute answer, rather a circumstantial choice.
- 4
The Next Web·5y
Hey Python devs, don’t underestimate TypeScript
Microsoft created TypeScript, a superset of JavaScript. TypeScript provides an extra layer of safety because programmers get information about possible bugs before execution time. Asynchronous programming is possible in Python and Javascript, but in TypeScript it’s built in from the core. The key difference between JavaScript and TypeScript is the type checker.