14 lines
164 B
JavaScript
14 lines
164 B
JavaScript
/**
|
|
* Created by cshao on 2021/12/19
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
class ClassA {
|
|
constructor(gender = 'male') {
|
|
this.gender = gender;
|
|
}
|
|
}
|
|
|
|
module.exports = ClassA;
|