Answers for "chrome console from js"

1

install moment in goole dev console

fetch('https://momentjs.com/downloads/moment.min.js')
    .then(response => response.text())
    .then(text => eval(text))
Posted by: Guest on December-18-2020
0

google js console

function add(a, b=20) {
  return a + b;
}
Posted by: Guest on January-04-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language