Write a JavaScript program to create a new string from a given string with the first character of the given string added at the front and back

  • برمجة جافاسكربت java script

Write a JavaScript program to create a new string from a given string with the first character of the given string added at the front and back.

الأجوبة

function front_back(str)
{
  first = str.substring(0,1);
  return first + str + first;
}
console.log(front_back('a'));
console.log(front_back('ab'));
console.log(front_back('abc'));
هل كان المحتوى مفيد؟

تبحث عن مدرس اونلاين؟

محتاج مساعدة باختيار المدرس الافضل؟ تواصل مع فريقنا الان لمساعدتك بتأمين افضل مدرس
ماهو التخصص الذي تبحث عنه؟
اكتب هنا...