Implement the function createSamples that takes a string and returns two samples of it, one in the lowercase
and another one in the uppercase.
#helper.js
const toLowerCase = (s) => {
return s.toLowerCase();
}
const toUpperCase = (s) => {
return s.toUpperCase();
}
export const createSamples = (s) => {
return s;
}
#solution.js
import { createSamples } from './helper.js';
console.log(createSamples('binGO')); // bingoBINGO
console.log(createSamples('R2D2')); // r2d2R2D2
what errors do I need to fix here?