Arrow Left Signer Gateway

Client Request Details

dSign

eSign v2.1 (Powered by Verasys)

eSign v3

eSign v2.1 (Powered by eMudhra)

eSignature

eSign v2.1 (Powered by CDSL)

or

Upload handwritten image

Font based signatures

Handwritten pad

Topaz eSignature pad

Preview required

Co-sign

Is-customize

Initials customization

Validate all placeholders

Enable Initials

or

I hereby provide my consent to eMudhra to use my information for signing the document.

Proceed
Code
Copied!
Copy
Code

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);

}