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
functionvalueToUpper(strings, ...values){// Set the values i.e. first and last name to upper-casevalues[0]=values[0].toUpperCase();values[1]=values[1].toUpperCase();// Re-create the templatereturn`${strings[0]}${values[0]}${strings[1]}${values[1]}${strings[2]}`;}// Create first and last name variablesletfirstName='Joe';letlastName='Bloggs';// Pass the template to a custom format functionlettemplate=valueToUpper`Welcome ${firstName}${lastName} to the site.`;// Diplsay the new templateconsole.log(template);
The text was updated successfully, but these errors were encountered:
The text was updated successfully, but these errors were encountered: