M
M
MIXAN19922017-02-07 14:03:24
Telecommunications
MIXAN1992, 2017-02-07 14:03:24

Is there any way to improve the RDS system?

This system only allows you to transmit a pilot tone, only text, but do we need to somehow share a frequency reskrs to insert our content for short periods of time?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
P
Pavel Kornilov, 2017-09-18
@KorniloFF

let obj = {
    name: 'kek',
    method: function () {
        console.log(this);
    }
}

function foo(f) {
    f();
}

foo(obj.method.bind(obj));

or
let obj = {
    name: 'kek',
    method: function () {
        console.log(this);
    }
}

function foo(f) {
    f.call(obj);
}

foo(obj.method);

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question