text POO js2
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了text POO js2相关的知识,希望对你有一定的参考价值。
const assert = require('assert');
class BankCustomer {
constructor(name,code){
this.name = name;
this.code = code;
}
getName(){
return this.name;
}
verifyPinInput(){
if(this.code === '3579'){
return true;
}else{
return false;
}
}
}
const customer = new BankCustomer('John Doe', '3579');
assert.equal(typeof customer.getName, 'function');
assert.equal(typeof customer.verifyPinInput, 'function');
assert.equal(customer.getName(), 'John Doe');
assert.ok(customer.verifyPinInput('3579'));
console.log(`${customer.verifyPinInput()}`);
以上是关于text POO js2的主要内容,如果未能解决你的问题,请参考以下文章
text POO JS 2
text poo js1
text poo_js
text POO en JS 1
text 挑战POO en JS 2封装
text 挑战POO en JS 2封装