javascript POO zh了JS 2 - 封装

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javascript POO zh了JS 2 - 封装相关的知识,希望对你有一定的参考价值。

const assert = require('assert');
class BankCustomer{
    constructor(clientName, clientPin){
        this.name = clientName;
        this.pin= clientPin;
    }
    getName(){
        return this.name
    }
    verifyPinInput(){
        if (this.pin === '3579'){
            return true;
        }else {
            return false;
        }      
}
}





// ... Ton code ici ...

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

以上是关于javascript POO zh了JS 2 - 封装的主要内容,如果未能解决你的问题,请参考以下文章

javascript poo2.js

javascript poo2.js

javascript poo.js

javascript poo.js

javascript poo.js

javascript poo.js