“Yesterday I was clever so I wanted to change the world. Today I am wise so I am changing myself.” – A quote by whom?

  • Rumi

“Let yourself be silently drawn by the strange pull of what you really love. It will not lead you astray.” – A quote by whom?

  • Rumi
Bangabandhu Satellite-1

Which rocket is delivered the Bangabandhu-1 to a geostationary transfer orbit on 11th May 2018 EST?

  • A Falcon 9 rocket

What’s the difference between unset() and unlink()

  • unset() sets a variable to "undefined" and unlink() deletes a file from the file system.

What’s the difference between the include() and require() functions?

  • require() function exits with a fatal error if the file can't be included, while the include() function may still pass and jump to the next step in the execution.

What will be output in console:

var animals = ['Tiger', 'Lion', 'Camel', 'Cow', 'Duck'];
console.log(animals.slice(2, 4));
  • Array ["Camel", "Cow"]