#I have a category and a text channel
1 messages · Page 1 of 1 (latest)
.
And if i dit right-clic copy id i don't have the same
rules : 1019695235367960648
template-section : 1065939249637117992
How i get my log :
console.log(interaction.guild.channels.cache.find(c => c.id ='1065939249637117992'))
console.log(interaction.guild.channels.cache.find(c => c.name ='template-section'))
well, = isn't equal operator
In JavaScript, = is used for assignment, == for loose equality, and === for strict equality checks.
x = 1; // assigning x to a value
'1' == 1 // true
'1' === 1 // false
• Equality and sameness in JavaScript: learn more