the library: ``` // myLibrary.js function square(...
# suitescript
e
the library:
Copy code
// myLibrary.js

function square(x) {
  return (x * x);
}

function cube(x) {
  return square(x) * x;
}
then in your script file:
Copy code
function afterSubmit(type) {
  var fiveSquared = square(5); // => 125
  var threeCubed = cube(3); // => 27
  // ... 
}