Best of MediumApril 2021

  1. 1
    Article
    Avatar of medium_jsMedium·5y

    Javascript vs Python Syntax Cheatsheet

    This cheat sheet serves as high-level comparisons between the two languages. The arithmetic operators between Javascript and Python are identical — except for one. Python is missing the strict equality/inequality operators. Since Python treats all numbers as floats (decimal numbers), you can use the double division sign to get an integer.

  2. 2
    Article
    Avatar of medium_jsMedium·5y

    Introducing notebookJS

    Introducing notebookJS: seamless integration between Python and JavaScript in Computational Notebooks Jorge Piazentin Ono. Notebooks are the perfect place to experiment with data visualization. Adding JavaScript to a Python notebook requires a lot of boilerplate code, which can become cumbersome and repetitive.

  3. 3
    Article
    Avatar of medium_jsMedium·5y

    Flutter vs. React Native in 2021 — Detailed Framework Comparison

    Cross-platforming mobile applications are less competitive in graphic animation. They are cost-efficient and could be a good fit for early-staged companies. Flutter and React Native use the BLoC methodology, while React Native is based on the React Native framework.

  4. 4
    Article
    Avatar of medium_jsMedium·5y

    Using Functional Programming to live your best JavaScript life: An Example

    Functional programming makes your code cleaner, more efficient, more abstract and reduces the potential for the introduction of errors. In functional programming, we strive to use pure functions and immutable data. Adhering to these two concepts, we can safely use higher-order functions (functions that take functions as an argument) to simplify our code.