Sste
Sste
KPCKevin Powell - Community
Created by Sste on 5/29/2024 in #front-end
Data from API is displaying in the console but not in the DOM, why?
not
16 replies
KPCKevin Powell - Community
Created by Sste on 5/29/2024 in #front-end
Data from API is displaying in the console but not in the DOM, why?
No description
16 replies
KPCKevin Powell - Community
Created by Sste on 5/29/2024 in #front-end
Data from API is displaying in the console but not in the DOM, why?
No description
16 replies
KPCKevin Powell - Community
Created by Sste on 5/29/2024 in #front-end
Data from API is displaying in the console but not in the DOM, why?
No description
16 replies
KPCKevin Powell - Community
Created by Sste on 6/26/2023 in #back-end
why else statement runs even if the if statement being true?
okay, thanks 🙂
13 replies
KPCKevin Powell - Community
Created by Sste on 6/26/2023 in #back-end
why else statement runs even if the if statement being true?
if I just wanna check one file?
13 replies
KPCKevin Powell - Community
Created by Sste on 6/26/2023 in #back-end
why else statement runs even if the if statement being true?
No description
13 replies
KPCKevin Powell - Community
Created by Sste on 6/26/2023 in #back-end
why else statement runs even if the if statement being true?
I am getting this message in the terminal
13 replies
KPCKevin Powell - Community
Created by Sste on 6/26/2023 in #back-end
why else statement runs even if the if statement being true?
what can I do to solve it?
13 replies
KPCKevin Powell - Community
Created by Sste on 6/26/2023 in #back-end
why else statement runs even if the if statement being true?
the one that checks if has a .jpg file in the folder
13 replies
KPCKevin Powell - Community
Created by Sste on 6/21/2023 in #front-end
Codewar challenge
hey, one more question...do u think solve this problems are useful or is it better to build real projects?
56 replies
KPCKevin Powell - Community
Created by Sste on 6/21/2023 in #front-end
Codewar challenge
yes. I will have to remake this problem all by myself to try to understand everything better
56 replies
KPCKevin Powell - Community
Created by Sste on 6/21/2023 in #front-end
Codewar challenge
thanks for all the help João
56 replies
KPCKevin Powell - Community
Created by Sste on 6/21/2023 in #front-end
Codewar challenge
56 replies
KPCKevin Powell - Community
Created by Sste on 6/21/2023 in #front-end
Codewar challenge
yessssssssssss, I did it!
function toCamelCase(str) {
let camelCaseString = "";

if (str) {
const words = str.split(/[-_]/);
let res = "";

for (let i = 1; i < words.length; i++) {
const firstLetter = words[i][0].toUpperCase();
const rest = words[i].slice(1).toLowerCase();
res += firstLetter + rest;
}

camelCaseString = words[0] + res;
}

return camelCaseString;
}
function toCamelCase(str) {
let camelCaseString = "";

if (str) {
const words = str.split(/[-_]/);
let res = "";

for (let i = 1; i < words.length; i++) {
const firstLetter = words[i][0].toUpperCase();
const rest = words[i].slice(1).toLowerCase();
res += firstLetter + rest;
}

camelCaseString = words[0] + res;
}

return camelCaseString;
}
56 replies
KPCKevin Powell - Community
Created by Sste on 6/21/2023 in #front-end
Codewar challenge
like this? I am feeling so stupid because I can't solve an easy problem haha
function toCamelCase(str) {
let camelCaseString = "";

if (!str) {
const words = str.split(/[-_]/);
let res = "";

for (let i = 1; i < words.length; i++) {
const firstLetter = words[i][0].toUpperCase();
const rest = words[i].slice(1).toLowerCase();
res += firstLetter + rest;
}

}
}
function toCamelCase(str) {
let camelCaseString = "";

if (!str) {
const words = str.split(/[-_]/);
let res = "";

for (let i = 1; i < words.length; i++) {
const firstLetter = words[i][0].toUpperCase();
const rest = words[i].slice(1).toLowerCase();
res += firstLetter + rest;
}

}
}
56 replies
KPCKevin Powell - Community
Created by Sste on 6/21/2023 in #front-end
Codewar challenge
let me try
56 replies
KPCKevin Powell - Community
Created by Sste on 6/21/2023 in #front-end
Codewar challenge
I noticed it haha
56 replies
KPCKevin Powell - Community
Created by Sste on 6/21/2023 in #front-end
Codewar challenge
okay, I will watch it
56 replies
KPCKevin Powell - Community
Created by Sste on 6/21/2023 in #front-end
Codewar challenge
humm, makes sense
56 replies