This section demonstrates invoice signing flow using Remote Signing.
Product Information
Product
Savings Account
GST
18%
Quantity
500
Total Amount
₹14,750
Monthly Income (INR)
50,000-1,00,000
Application Number
1234567
Price per signature
₹25
Customer Information
eSeal with Remote Signing
Advanced Settings
I hereby provide my consent to eMudhra to use my information for signing the document.
Code
Copied!
Generate payload to populate
var primeArray = [];
/*Write a function that checks for primeness andpushes those values to the array*/
function PrimeCheck(candidate){
isPrime = true;
for(var i = 2; i < candidate && isPrime; i++){
if(candidate%i === 0){
isPrime = false;
} else {
isPrime = true;
}
}
if(isPrime){
primeArray.push(candidate);
}