Untitled

 avatar
unknown
plain_text
10 months ago
157 B
14
Indexable
const merhabaDe = (isim: string = "Misafir"): string => {
    return `Merhaba, ${isim}!`;
};

console.log(merhabaDe("Ecrin"));
console.log(merhabaDe());
Editor is loading...
Leave a Comment