text 挑战POO en JS 2封装
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了text 挑战POO en JS 2封装相关的知识,希望对你有一定的参考价值。
const assert = require('assert');
// ... Ton code ici ...
class BankCustomer {
constructor(nameCustomer, pinInput) {
this.nameCustomer = nameCustomer;
this.pinInput = pinInput;
};
getName(){
return this.nameCustomer;
}
verifyPinInput(){
if (this.pinInput === '3579') {
return 'true';
}else{
return 'false';
}
}
}
// Tests
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'));
以上是关于text 挑战POO en JS 2封装的主要内容,如果未能解决你的问题,请参考以下文章
text POO en JS 1
javascript POO zh了JS 2 - 封装
text POO JS 2
javascript POO en JS 1 - ProcéduralvsObjet,类,实例
text POO js2
text poo js1