Files
learn_enough_javascript_cod…/Listing_7.8.js
T
2022-01-12 14:58:42 -08:00

11 lines
200 B
JavaScript

.
.
.
// Defines a TranslatedPhrase object.
function TranslatedPhrase(content, translation) {
this.content = content;
this.translation = translation;
}
TranslatedPhrase.prototype = new Phrase();