google js console

Solutions on MaxInterview for google js console by the best coders in the world

showing results for - "google js console"
Matthew
09 Jul 2019
1fetch('https://momentjs.com/downloads/moment.min.js')
2    .then(response => response.text())
3    .then(text => eval(text))
4
Gordon
13 Oct 2018
1function add(a, b=20) {
2  return a + b;
3}