Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /// TEST 1
- var input = {
- 'a': 1,
- 'b': 2,
- 'c': 3
- };
- var capitalize = function(str) {
- return str.toUpperCase();
- };
- var output = mapKeys(input, capitalize);
- /* output should be:
- {
- 'A': 1,
- 'B': 2,
- 'C': 3
- }
- */
- /// TEST 2
- var input = {
- imie: 'Zbigniew',
- nazwisko: 'Parzywoda'
- rokUrodzenia: 1955,
- pesel: '55021712345'
- };
- var polishToEnglish = function(str) {
- var dictionary = {
- 'imie': 'firstName',
- 'nazwisko': 'surname',
- 'rokUrodzenia': 'birthYear'
- };
- return dictionary[str] || str;
- };
- var output = mapKeys(input, polishToEnglish);
- /* output should be:
- {
- firstName: 'Zbigniew',
- surname: 'Parzywoda'
- birthYear: 1955,
- pesel: '55021712345'
- }
- */
Advertisement
Add Comment
Please, Sign In to add comment