-
Notifications
You must be signed in to change notification settings - Fork 16
/
code-challenges.js
81 lines (65 loc) · 1.39 KB
/
code-challenges.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
/* eslint-disable no-unused-vars */
const { SPANISH_TO_ENGLISH, TRACK_LIST } = require('./constants.js')
const newSingle = (single) => {
// insert code
};
const eresBadBunny = (name) => {
// insert code
};
const areYouLil = (name) => {
// insert code
};
const mostViewsThreeVideos = (videoOneViews, videoTwoViews, videoThreeViews) => {
// insert code
};
const mostViews = (videoViews) => {
// insert code
};
const validateEmail = (email) => {
// insert code
};
const validateEmailWithMessage = (email) => {
// insert code
};
const getInitials = (name) => {
// insert code
};
const getInitialsOneName = (name) => {
// insert code
};
const getInitialsLongName = (name) => {
// insert code
};
const howRepetitiveAreYou = (lyrics, word) => {
// insert code
};
const translateThis = (titles) => {
const spanishToEnglish = SPANISH_TO_ENGLISH;
// insert code
};
const getSingles = (trackList = TRACK_LIST) => {
// insert code
};
const getUniqueArtists = (trackList = TRACK_LIST) => {
// insert code
};
const getMostStreamedTrack = (trackList = TRACK_LIST) => {
// insert code
};
module.exports = {
newSingle,
eresBadBunny,
areYouLil,
mostViewsThreeVideos,
mostViews,
validateEmail,
validateEmailWithMessage,
getInitials,
getInitialsOneName,
getInitialsLongName,
howRepetitiveAreYou,
translateThis,
getSingles,
getUniqueArtists,
getMostStreamedTrack
};