Being a developer is both exciting because you have so many options to choose from and yet frustrating because you have so many options to choose from.
๐ฟCompiling vs Transpiling
Compiling is the term for taking source code written in one language and transforming it into another.
Transpiling is a term for taking source code written in one language and transforming it into another language with a similar level of abstraction.
Did you know?
In Python, the built-in sort() method for lists uses an algorithm called Timsort. Timsort is a hybrid sorting algorithm derived from merge sort and insertion sort. It is designed to perform well on many kinds of real-world data.