Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>JS Bin</title>
</head>
<body>
</body>
</html>
 
// заглушка для демонстрации асинхронности
function exec(config, command, cb) {
  setTimeout(function() {
    cb(null, 'WolF');
  }, 2000);
}
// пример стандартный
function enabledApiDefault(conf, cb) {
  var config = {};
  
  exec(config, '/ip service set api disabled=no', cb);
}
enabledApiDefault('config', function(err, res) {
  console.log(res);
});
// пример на Promise
function enabledApiPromise(conf, cb) {
  var config = {};
  
  return new Promise(function(res, err) {
    exec(config, '/ip service set api disabled=no', function(e, r) {
      if(e) err(e);
      else res(r);
    });
  });
}
var promise = enabledApiPromise('config');
promise.then(function(res) {
  console.log(res);
});
Output 300px

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
anonymouspro
0viewers