Tag: javascript

  • JS functions first class objects

    JS functions first class objects

    In JavaScript, functions are considered to be first-class objects. This means that they can be treated just like any other data type, such as strings, numbers, or arrays. For example, just like you can assign a string to a variable, you can also assign a function to a variable. And just like you can pass […]

  • Jasmine testing framework

    Jasmine testing framework

    Jasmine is a popular open-source testing framework for JavaScript that is used to write and run unit tests for web applications. It is designed to be easy to use and provides a range of features and tools to help you write and run high-quality tests. What is Jasmine? Jasmine is a behavior-driven development (BDD) testing […]