Skip to content

Instantly share code, notes, and snippets.

View mahmne's full-sized avatar

Mahmoud Aldahdouh mahmne

View GitHub Profile
Old:
I live only for my scholarship (925 uah or about $37 per month). It's really impossible for me to pay for this course. Financial Aid will help me take this course without any adverse impact on my monthly essential needs. I want to take this course as I want to complete the Full Stack Web Development Specialization on Coursera.
I want to complete the Full Stack Web Development Specialization on offer by The Hong Kong University of Science and Technology. This Specialization will boost my job prospects after graduation from my institute. It will help perform better in carrying out Web Development and give me an edge over my competitors. A verified certificate will attach credibility to the certificate I receive from this course.
I plan to complete all assignments on or before time as I have done in previous Signature Track Courses. Also I intend to participate in Discussion Forums, which I have found to supplement my learning immensely in the other online courses I have taken on Coursera. I also plan to
@mahmne
mahmne / firstNonRepeatingLetter
Created November 27, 2017 14:57
first Non Repeating Letter function
const firstNonRepeatingLetter = (str) => {
let lowerCase = str.toLowerCase();
for(var i = 0; i < lowerCase.length; i++){
var split = lowerCase.split(lowerCase[i]);
if(split.length - 1 === 1){
return str[i];
}
}
return "";
};