Python
dict = { 'platform': 'telegram' }
if 'platform' in dict:
# do something
Javascript
let obj ={ platform: 'telegram' }
if(obj['platform']){
// do something
}
For further actions, you may consider blocking this person and/or reporting abuse
Jesse Warden -
Bruno Noriller -
hunzombi -
codemee -
Top comments (1)
❤️ python