Junior developer with foundational experience in JavaScript and frameworks like React and Next.js. I am consistently striving to improve my skills, learn new programming approaches, and deepen my understanding of development. Known for attention to detail and willingness to tackle challenges of varying complexity. I am open to learning and aim to grow professionally within a team where I can develop and contribute meaningfully.
const expect = (val) => {
return {
toBe: (value) => {
if (val === value) {
return true;
} else {
throw Error('Not Equal');
}
},
notToBe: (value) => {
if (val !== value) {
return true;
} else {
throw Error('Equal');
}
},
};
};