You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
T-Shirt: Write a function called make_shirt() that accepts a size and the text of a message that should be printed on the shirt. The function should print a sentence summarizing the size of the shirt and the message printed on it. Call the function.
*/
function make_shirt(size:number, text:string){
console.log(`Your order has been recorded. Your selected tshirt size is ${size} and the message that will be printed on tshirt is \" ${text} \"`);