Chapter 7. Refactoring Functions and Objects
In the previous chapter, we started a project of creating a Naive Bayes Classifier (or NBC, for short). We’ve made improvements, but nothing so far really got to the heart of refactoring our functions and objects.
That’s what this chapter is all about.
The Code (Improved)
In case you skimmed over the last chapter or missed a step somewhere, here is the version we ended up with:
function
fileName
(){
var
theError
=
new
Error
(
"here I am"
);
return
theError
.
stack
.
match
(
/\/(\w+\.js)\:/
)[
1
];
};
console
.
log
(
`Welcome to
${
fileName
()
}
!`
);
var
easy
=
'easy'
;
var
medium
=
'medium'
;
var
hard
=
'hard'
;
imagine
=
[
'c'
,
'cmaj7'
,
'f'
,
'am'
,
'dm'
,
'g'
,
'e7'
];
somewhereOverTheRainbow
=
[
'c'
,
'em'
,
'f'
,
'g'
,
'am'
];
tooManyCooks
=
[
'c'
,
'g'
,
'f'
];
iWillFollowYouIntoTheDark ...
Get Refactoring JavaScript now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.