Я пытаюсь составить 2 предложения, которые представляют собой один и тот же Текущий элемент, и добавить точку в конец каждого неизменяемого объекта.
Это входные данные и мой текущий код
const Immutable = require("immutable");
let error = Immutable.fromJS({
name: ["This field is required", "Another error"],
age: ["Only numeric characters are allowed"]
});
error.map((currElement, index) => {
console.log("The current iteration is: " + index);
console.log("The current element is: " + currElement);
});
myожидаемый результат -
error = {
name: "This field is required. Another error.",
age: "Only numeric characters are allowed."
};
Трейл и попытка ошибки
error.map((currElement, index) => {
// console.log("The current iteration is: " + index);
// console.log("The current element is: " + currElement);
let element = currElement.get(0) + "." + " " + currElement.get(1) + ".";
return console.log(element);
});
Его закрытие, но я все еще не получаю правильный вывод.