Question: Problem #2 Create a an Object constructor function called BankAcct with the properties acctNum, acctOwner, checkBalance, saveBalance, acctType. Define a BankAcct.prototype method called checkTransfer() that
Problem #2
Create a an Object constructor function called BankAcct with the properties acctNum, acctOwner, checkBalance, saveBalance, acctType.
Define a BankAcct.prototype method called checkTransfer() that accepts a amount as an argument. The method should check if the amount + checkBalance is greater than 0 before setting a new checkBalance amount.
Problem #3
Write a JavaScript function to check if an object contains given property. Createa function checkGivenProperty() that accepts a object and a property name as arguments and return true or false.
Tip 1: UsehasOwnProperty.call()
Tip 2: First createan object with properties , then use hasOwnProperty.call() to check for a given property.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
