Прошу помощи
что делаю не так
наставьте на путь истинный )
Function.js
export const writeLog = (str) => {
for (let i = 0; i <= str.length; i++) {
process.stdout.write(str.charAt(i)+'\n');
}
}
solution.js
import { writeLog } from './functions.js';
const message = `
Hello, world 👋!
Let's make our Console Output Fun and Interactive in JavaScript and Node.js 🚀
`;
writeLog(message);