function

  • Javascript: Arrow function Expression

    Javascript: Arrow function Expression

    Arrow functions were introduced in ES6 (EcmaScript 6) which provides the more compact way to work with anonymous functions with smaller and compact syntax making code more readable and…

    neotam Avatar
  • How to use python built-in function filter with example

    How to use python built-in function filter with example

    Python built-in function filter is helpful sometimes to write a compact code. Filter function takes two arguments “function” and “iterable”. Each element of iterator which is returned by iterable…

    neotam Avatar