Advertisement
andreterceiro

Untitled

Oct 18th, 2021
29
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. const moduleProduct = require("./Product");
  2. const axios = require("axios");
  3.  
  4. const product = new moduleProduct.Product;
  5.  
  6. product.getPrice(axios).then(
  7. function(result) {
  8. console.log(result.data);
  9. }
  10. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement