Your achievements

Level 1

0% to

Level 2

Tip /
Sign in

Sign in to Community

to gain points, level up, and earn exciting badges like the new
Bedrock Mission!

Learn more

View all

Sign in to view all badges

The 1st edition of the Target Community Lens newsletter is out now! Click to the right to find all the latest updates
SOLVED

profile script includes method not working

Avatar

Employee

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