Skip to content

Instantly share code, notes, and snippets.

View RonRaj101's full-sized avatar
๐Ÿ˜‡
Procrastinating...

Ronit Rai RonRaj101

๐Ÿ˜‡
Procrastinating...
View GitHub Profile
function getAbout(json) {
const aboutComponent = json?.included?.find((d) =>
d.entityUrn?.includes("ABOUT")
);
return aboutComponent?.topComponents?.[1]?.components?.textComponent?.text
?.text;
}
function getExperience(json) {
const experienceEntity = json?.included?.find(