Expand my Community achievements bar.

SOLVED

profile script includes method not working

Avatar

Employee Advisor

Hi community,

I tried using 

.includes()

.indexOf()

.endsWith()

To check if string contains certain word in profile script but none of above is working in profile script..

Can anyone suggest alternative method to check if string contains particular word in profile script??

 

Thanks

Gauresh

 

1 Accepted Solution

Avatar

Correct answer by
Community Advisor

Hi @Gaureshk_Kodag  includes() works for me

View solution in original post

3 Replies

Avatar

Level 4

What errors are you seeing? I have the following profile script saved and it was working last I checked. 

 

var viewedPageGroup_pageGroupName = user.get('viewedPageGroup_pageNameGroup') || 0;
if (page.url.toLowerCase().indexOf('www.domain.com/page-name/') > -1) { 
    return true; 
}

Avatar

Employee

Hey @Gaureshk_Kodag, how is it going on this issue? Were you able to get it working? Let us know!

Avatar

Correct answer by
Community Advisor

Hi @Gaureshk_Kodag  includes() works for me