Yitzhak

How brands enter the digital limelight. The office dynamo, Yitzhak infuses daily operations with contagious energy and fun. As our tech virtuoso, he not only orchestrates but revolutionizes creative strategies across all digital domains, propelling our clients into the global spotlight via the electrifying realm of cyberspace.

Fun fact:

function isTechy(person) {
return person.isTechy ? `${person.name} is a techy guy` : `${person.name} is not a techy guy`;
}
const personInfo = {
name: “Yitzhak”,
isTechy: true
};

console.log(isTechy(personInfo));