Your KYC is successfully initiated. Please review the following information and proceed to sign.
Employment Details
Product
Savings Account
Employment
Employee
Sector
Commercial
Age Range
30-40
Monthly Income (INR)
50,000-1,00,000
Application Number
1234567
Salary
1,00,000
Applicant Information
I hereby provide my consent to eMudhra to use my information for signing the document.
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);
}