Use client id without casts
This commit is contained in:
@@ -25,7 +25,7 @@
|
||||
|
||||
ym(88895893, "getClientID", function (clientID) {
|
||||
ym(88895893, 'userParams', {
|
||||
university_test_group: Number(BigInt(clientID).toString().slice(-1)) % 2 === 0 ? 'a' : 'b'
|
||||
university_test_group: Number(clientID.slice(-1)) % 2 === 0 ? 'a' : 'b'
|
||||
});
|
||||
});
|
||||
</script>
|
||||
|
||||
Reference in New Issue
Block a user